Welcome to Raven Docs
Raven Docs is an AI-native knowledge management platform built for modern teams. Organize your documentation, manage tasks, and leverage AI to supercharge your productivity.
Why Raven Docs?
Built from the ground up with AI integration. Use natural language to search, create, and manage your knowledge base.
Work together with your team in real-time. See changes as they happen with live cursors and presence.
A modern block-based editor with support for rich content, code blocks, tables, and more.
Integrated task tracking that lives alongside your documentation. Never lose context again.
Connect AI agents directly to your knowledge base using the Model Context Protocol.
Run Raven Docs on your own infrastructure. Full control over your data and deployment.
Quick Example
Here's a quick example of using the Raven Docs API to create a page:
import { RavenDocs } from '@raven-docs/sdk';
const client = new RavenDocs({
apiKey: process.env.RAVEN_API_KEY,
});
// Create a new page
const page = await client.pages.create({
workspaceId: 'ws_123',
spaceId: 'space_456',
title: 'Welcome to our Wiki',
content: {
type: 'doc',
content: [
{
type: 'paragraph',
content: [{ type: 'text', text: 'Hello, world!' }],
},
],
},
});
Getting Help
- Discord: Join our Discord community for support and discussions
- GitHub: Report issues and contribute on GitHub
- Twitter: Follow @ravendocs for updates