slite-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@slite-mcpsearch for project roadmap notes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
⚠️ DEPRECATED — Use the Official Slite MCP Instead
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
Slite MCP Server (Deprecated)
A Model Context Protocol (MCP) server that integrates with Slite's API to search, retrieve, create, and edit notes.
Features
🔍 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
Related MCP server: Joplin MCP Server
Installation
# Clone the repository
git clone https://github.com/fajarmf/slite-mcp.git
cd slite-mcp
# Install dependencies
npm install
# Build the project
npm run buildConfiguration
Getting your Slite API Key
Log in to your Slite workspace
Go to Settings → API
Generate a new API key
Setting up the MCP Server
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"
}
}
}
}Usage
Once configured, the following tools are available:
slite_search
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
}
}slite_get_note
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"
}
}slite_get_note_children
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"
}
}slite_ask
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?"
}
}slite_create_note
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"
}
}slite_edit_note
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
}
}slite_update_note
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"
}
}Testing
Quick Start
# 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 testTest Setup
The 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 -- --forceTest Suite
The 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
Development
Project Structure
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.mdBuilding
npm run buildRequirements
Node.js 16+
TypeScript 5.0+
A valid Slite API key
API Response Formats
The Slite API returns data in specific formats:
Search Results
Results are in the
hitsarrayEach hit contains:
id,title,highlight,updatedAt,type,parentNotes
Note Content
Full markdown or HTML content
Includes metadata:
id,title,url,updatedAt,parentNoteId
Child Notes
Results in the
notesarrayPagination info:
total,hasNextPage,nextCursor
Troubleshooting
Authentication Failed
Verify your API key is correct
Check if the key has the necessary permissions
No Results Found
Try different search terms
Ensure the notes exist in your workspace
Check if you have access to the notes
API Changes
If you encounter errors, the Slite API might have changed. Check:
Response format in the test scripts
Endpoint URLs
Required parameters
Contributing
Contributions are welcome! Please:
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
License
MIT License - see LICENSE file for details
Support
For issues or questions:
Create an issue on GitHub
Check Slite's API documentation
Review the test scripts for examples
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fajarmf/slite-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server