This project is no longer maintained.
Slite now provides an official MCP server with native support for all block types including mermaid diagrams, tables, callouts, and more.
To migrate, update your MCP config:
{ "mcpServers": { "slite-official": { "type": "http", "url": "https://api.slite.com/mcp", "headers": { "Authorization": "Bearer YOUR_SLITE_API_KEY" } } } }Key improvements in the official MCP over this repo:
- ✅ Mermaid/diagram blocks work correctly
- ✅ Block-level editing via
modify-block(no more full-document rewrites)- ✅ Callouts, tables, collapsibles, and all native Slite blocks
- ✅ Maintained by Slite directly
A Model Context Protocol (MCP) server that integrates with Slite's API to search, retrieve, create, and edit notes.
- 🔍 Search Notes: Search through your Slite workspace
- 📄 Get Note Content: Retrieve specific notes by ID in markdown or HTML format
- 🌳 Browse Hierarchy: Get child notes of any parent note
- 🤖 Ask Questions: Natural language question answering across your workspace
- ✏️ Edit Notes: Search-and-replace editing with validation and dry-run support
- 📝 Create Notes: Create new notes with markdown content
- 🔄 Update Notes: Full content replacement for major rewrites
# Clone the repository
git clone https://github.com/fajarmf/slite-mcp.git
cd slite-mcp
# Install dependencies
npm install
# Build the project
npm run build- Log in to your Slite workspace
- Go to Settings → API
- Generate a new API key
Add the server to your MCP configuration file (~/.mcp.json):
{
"mcpServers": {
"slite": {
"command": "node",
"args": ["/path/to/slite-mcp/build/index.js"],
"env": {
"SLITE_API_KEY": "your-api-key-here"
}
}
}
}Once configured, the following tools are available:
Search for notes in your Slite workspace.
Parameters:
query(required): Search query stringhitsPerPage(optional): Results per page (default: 10)
Example:
{
"tool": "slite_search",
"arguments": {
"query": "project documentation",
"hitsPerPage": 5
}
}Retrieve a specific note by its ID.
Parameters:
noteId(required): The ID of the note to retrieveformat(optional): Format to return - "md" or "html" (default: "md")
Example:
{
"tool": "slite_get_note",
"arguments": {
"noteId": "BoptqNi4pm0lcV",
"format": "md"
}
}Get all child notes of a parent note.
Parameters:
noteId(required): The ID of the parent notecursor(optional): Pagination cursor for next page
Example:
{
"tool": "slite_get_note_children",
"arguments": {
"noteId": "5i6k33yrVu7eMy"
}
}Ask natural language questions and get AI-powered answers from your Slite workspace.
Parameters:
question(required): The question to askparentNoteId(optional): Limit search to notes under this parent
Example:
{
"tool": "slite_ask",
"arguments": {
"question": "What is our deployment process?"
}
}Create a new note in your Slite workspace.
Parameters:
title(required): Note titlemarkdown(optional): Note content in markdown formatparentNoteId(optional): Parent note ID (creates in personal channel if not specified)
Example:
{
"tool": "slite_create_note",
"arguments": {
"title": "Meeting Notes",
"markdown": "# Meeting Notes\n\n- Discussed project timeline\n- Assigned tasks",
"parentNoteId": "5i6k33yrVu7eMy"
}
}Edit a note using search-and-replace. Preferred for targeted edits - faster and safer than full rewrite.
Parameters:
noteId(required): The ID of the note to editedits(required): Array of search-and-replace operationsoldText: Exact text to find (must be unique in document)newText: Text to replace it with
dryRun(optional): If true, validate edits without applying them
Example:
{
"tool": "slite_edit_note",
"arguments": {
"noteId": "BoptqNi4pm0lcV",
"edits": [
{ "oldText": "Draft", "newText": "Final" },
{ "oldText": "TODO: add details", "newText": "Implementation complete" }
],
"dryRun": false
}
}Replace entire note content. Use slite_edit_note for small changes.
Parameters:
noteId(required): The ID of the note to updatemarkdown(required): New markdown content (replaces entire note)title(optional): New title (keeps existing if not provided)
Example:
{
"tool": "slite_update_note",
"arguments": {
"noteId": "BoptqNi4pm0lcV",
"markdown": "# New Content\n\nThis replaces everything.",
"title": "Updated Title"
}
}# Copy environment config and add your API key
cp .env.example .env
# Edit .env with your SLITE_API_KEY
# Setup test data (creates test documents in Slite)
npm run test:setup
# Run all tests
npm testThe test:setup command creates test documents in your Slite workspace:
- A parent note with 55 child notes (for cursor pagination testing)
- A "Test Data for MCP Server" child with searchable keywords
The script is idempotent - it won't create duplicates if test data already exists.
# Setup with a new parent note
npm run test:setup
# Or use an existing note as parent
npm run test:setup -- --parent=<note-id>
# Force recreation even if data exists
npm run test:setup -- --forceThe test suite includes:
- API Tests: Search, get note, get children, ask endpoint
- Error Handling: Invalid IDs, unauthorized access
- Pagination: hitsPerPage for search, cursor for children (requires 55+ children)
- Content Formats: Markdown and HTML output
- MCP Server Integration: All tools via stdio transport
- Write Operations: Create, edit, update - with content verification after each operation
slite-mcp/
├── src/
│ └── index.ts # Main MCP server (7 tools: 4 read, 3 write)
├── build/ # Compiled JavaScript files
├── tests/
│ ├── index.test.js # Consolidated test suite
│ └── setup-test-data.js # Idempotent test data setup
├── examples/ # Example configurations
├── package.json
├── tsconfig.json
└── README.md
npm run build- Node.js 16+
- TypeScript 5.0+
- A valid Slite API key
The Slite API returns data in specific formats:
- Results are in the
hitsarray - Each hit contains:
id,title,highlight,updatedAt,type,parentNotes
- Full markdown or HTML content
- Includes metadata:
id,title,url,updatedAt,parentNoteId
- Results in the
notesarray - Pagination info:
total,hasNextPage,nextCursor
- Verify your API key is correct
- Check if the key has the necessary permissions
- Try different search terms
- Ensure the notes exist in your workspace
- Check if you have access to the notes
If you encounter errors, the Slite API might have changed. Check:
- Response format in the test scripts
- Endpoint URLs
- Required parameters
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
MIT License - see LICENSE file for details
For issues or questions:
- Create an issue on GitHub
- Check Slite's API documentation
- Review the test scripts for examples