Skip to main content

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?

AI-Native

Built from the ground up with AI integration. Use natural language to search, create, and manage your knowledge base.

Real-time Collaboration

Work together with your team in real-time. See changes as they happen with live cursors and presence.

Powerful Editor

A modern block-based editor with support for rich content, code blocks, tables, and more.

Task Management

Integrated task tracking that lives alongside your documentation. Never lose context again.

MCP Server

Connect AI agents directly to your knowledge base using the Model Context Protocol.

Self-Hostable

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

What's Next?