SiYuan MCP Server

SiYuan MCP Server

Enables interaction with SiYuan Note through its API for comprehensive note management. Supports searching, creating, editing documents, managing notebooks, and daily notes operations through natural language commands.

Category
Visit Server

README

SiYuan MCP Server

中文文档 | English

A Model Context Protocol (MCP) server for SiYuan Note, enabling AI assistants like Claude, Cursor, and other MCP-compatible tools to interact with your SiYuan notes seamlessly.

⚠️ Important Notice | 重要声明

English:

The code in this project is primarily developed with AI assistance. While functional testing has been performed, comprehensive code review has not been completed. Before using this project, please be aware of and accept the following:

  • The code may contain undiscovered issues or potential risks
  • Conduct necessary code reviews and testing before use
  • Users assume all risks and responsibilities arising from the use of this project
  • Thorough validation is recommended before production use

Use with caution and at your own risk.


中文:

本项目代码主要由 AI 辅助开发,仅进行了功能性测试,未对所有代码进行完整审查。使用本项目前,请充分了解并接受以下内容:

  • 代码可能存在未发现的问题或潜在风险
  • 请在使用前进行必要的代码审查和测试
  • 使用者需自行承担使用本项目所产生的风险和责任
  • 建议在生产环境使用前进行充分的验证

请谨慎使用,并对自己的选择负责。

✨ Features

  • 🚀 Full MCP (Model Context Protocol) implementation
  • 📝 20+ tools for comprehensive SiYuan Note operations
  • 🔍 Advanced search (by filename, content, and SQL)
  • 📁 Document management (create, read, update)
  • 📅 Daily note support with auto-creation
  • 📚 Notebook operations
  • 📸 Snapshot management (backup & restore)
  • 🔒 Document moving and tree operations
  • 💻 Written in TypeScript with full type definitions
  • 🌐 Works with Claude Desktop, Cursor, and any MCP-compatible client

📦 Installation

Option 1: Install from Source (Recommended)

# Clone the repository
git clone https://github.com/yourusername/siyuan-mcp.git
cd siyuan-mcp

# Install dependencies
npm install

# Build the project
npm run build

# Install globally
npm install -g .

Option 2: Install from npm (When Published)

npm install -g siyuan-mcp-server

After installation, the siyuan-mcp command will be available globally.

🔧 Configuration

Prerequisites

  1. Get your SiYuan API Token:

    • Open SiYuan Note
    • Go to Settings → About → API Token
    • Copy the token
  2. Ensure SiYuan is running:

    • Default URL: http://127.0.0.1:6806
    • If using a different port, adjust the baseUrl accordingly

Configure for Cursor

Edit your MCP configuration file at ~/.cursor/mcp.json:

{
  "mcpServers": {
    "siyuan-mcp": {
      "command": "siyuan-mcp",
      "args": [
        "stdio",
        "--token",
        "YOUR_API_TOKEN_HERE",
        "--baseUrl",
        "http://127.0.0.1:6806"
      ]
    }
  }
}

Configure for Claude Desktop

Edit the configuration file at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "siyuan-mcp": {
      "command": "siyuan-mcp",
      "args": [
        "stdio",
        "--token",
        "YOUR_API_TOKEN_HERE",
        "--baseUrl",
        "http://127.0.0.1:6806"
      ]
    }
  }
}

Verify Installation

After configuration, restart your MCP client (Cursor/Claude Desktop) and try:

  • "List all my SiYuan notebooks"
  • "Search for documents containing 'project plan'"
  • "Create a new meeting note in my work notebook"
  • "Show me the 5 most recently modified documents"

🛠️ Available MCP Tools

Once configured, you can interact with SiYuan through natural language. The server provides 20+ tools:

📝 Search & Query

  • search_by_filename - Search documents by filename
  • search_by_content - Search blocks/documents by content
  • sql_query - Execute custom SQL queries on SiYuan database (advanced)

📄 Document Operations

  • get_document_content - Get the markdown content of a document
  • create_document - Create a new document
  • append_to_document - Append content to an existing document
  • update_document - Update (overwrite) document content
  • move_document - Move document(s) to a new location
  • get_document_tree - Get document tree structure with specified depth

📅 Daily Note

  • append_to_daily_note - Append to today's daily note (auto-creates if needed)

📚 Notebook Management

  • list_notebooks - List all notebooks
  • get_recently_updated_documents - Get recently updated documents

📸 Snapshot Management

  • create_snapshot - Create a data snapshot for backup
  • list_snapshots - List available snapshots
  • rollback_snapshot - Rollback to a specific snapshot

Usage Examples

Ask your AI assistant naturally:

"List all my SiYuan notebooks"
"Search for documents about machine learning"
"Create a new document called 'Project Ideas' in my Work notebook"
"Show me the 10 most recently modified documents"
"Append 'Meeting notes: discussed Q4 goals' to today's daily note"
"Create a snapshot before I make major changes"
"What's the tree structure of my 'Projects' notebook?"

🔧 Advanced: Using as TypeScript Library

While primarily designed as an MCP server, you can also use this package as a TypeScript library in your own projects:

import { createSiyuanTools } from 'siyuan-mcp-server';

// Create an instance
const siyuan = createSiyuanTools('http://127.0.0.1:6806', 'your-token');

// Search operations
const files = await siyuan.searchByFileName('keyword', 10);
const blocks = await siyuan.searchByContent('content', 20);

// Document operations
const content = await siyuan.getFileContent(documentId);
await siyuan.createFile('notebookId', '/path/to/doc', '# Title\n\nContent');
await siyuan.appendToFile(documentId, 'New content');
await siyuan.overwriteFile(documentId, 'Replaced content');

// Daily note
await siyuan.appendToDailyNote('notebookId', 'Today I learned...');

// Notebook operations
const notebooks = await siyuan.listNotebooks();

// SQL queries
const results = await siyuan.search.query(`
  SELECT * FROM blocks 
  WHERE type='d' AND content LIKE '%keyword%'
  ORDER BY updated DESC
  LIMIT 10
`);

// Direct API access
await siyuan.block.insertBlockAfter(blockId, 'New block content');
await siyuan.document.moveDocument(['doc1', 'doc2'], 'targetNotebookId');
const tree = await siyuan.document.getDocTree('notebookId', 2);

Type Definitions

Full TypeScript types are included:

import type {
  SiyuanConfig,
  SiyuanApiResponse,
  Block,
  Notebook,
  NotebookConf,
  DocTreeNode,
  SearchOptions
} from 'siyuan-mcp-server';

💻 Development

Setup

# Clone and install
git clone https://github.com/yourusername/siyuan-mcp.git
cd siyuan-mcp
npm install

# Build
npm run build

# Watch mode (auto-rebuild)
npm run watch

# Lint
npm run lint

# Format
npm run format

Manual Testing

# Start stdio server manually
npm run mcp:stdio -- --token YOUR_TOKEN --baseUrl http://127.0.0.1:6806

# Start HTTP server (for web clients)
npm run mcp:http -- --token YOUR_TOKEN --port 3000 --baseUrl http://127.0.0.1:6806

🏗️ Architecture

siyuan-mcp/
├── src/                    # Core TypeScript library
│   ├── api/               # SiYuan API clients
│   ├── types/             # Type definitions
│   └── utils/             # Helper utilities
├── mcp-server/            # MCP server implementation
│   ├── bin/               # CLI entry points
│   ├── core/              # MCP server core
│   ├── handlers/          # Tool handlers
│   └── transports/        # Stdio/HTTP transports
└── dist/                  # Compiled JavaScript

🔧 Tech Stack

  • Language: TypeScript 5.3+
  • Runtime: Node.js 18+
  • Module System: ES Modules
  • MCP SDK: @modelcontextprotocol/sdk
  • Protocol: MCP (Model Context Protocol)

❓ FAQ

How do I get my SiYuan API Token?

  1. Open SiYuan Note
  2. Go to Settings → About → API Token
  3. Copy the token

How do I find my notebook ID?

Ask your MCP client: "List all my SiYuan notebooks" and it will show IDs.

Or programmatically:

const notebooks = await siyuan.listNotebooks();
console.log(notebooks.map(nb => `${nb.name}: ${nb.id}`));

The server isn't working, what should I check?

  1. Is SiYuan running? (default: http://127.0.0.1:6806)
  2. Is your API token correct?
  3. Did you restart your MCP client after configuration?
  4. Check the logs in your MCP client

Can I use a different SiYuan port?

Yes! Just update the baseUrl parameter:

"--baseUrl", "http://127.0.0.1:YOUR_PORT"

Does this work with remote SiYuan instances?

Yes! Point baseUrl to your remote instance:

"--baseUrl", "http://your-server.com:6806"

🤝 Contributing

Contributions are welcome! Please feel free to submit issues and pull requests.

📄 License

Apache-2.0

🔗 Related Projects

🙏 Acknowledgments

This project is primarily developed with AI assistance and built on top of the excellent SiYuan Note project.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured