Developed by Anthropic, the Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to LLMs. Slite MCP Server allows you to use the Slite API in your MCP clients. It is compatible with any MCP client, such as Cursor or Claude Desktop . Before you begin, ensure you have Claude Desktop correctly installed. You can take this guide as inspiration for other clients. Head to your Settings → API
section. You can generate a personal key from there.
Your personal API Key grants access to all the sources you can access. Do not used for shared usage.
You need to edit the Claude configuration file to enables it to connect to MCP servers.
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
code "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
And add the appropriate configuration in this claude_desktop_config.json
file.
{
"mcpServers": {
"slite": {
"command": "npx",
"args": ["-y", "slite-mcp-server"],
"env": {
"SLITE_API_KEY": "YOUR_SLITE_API_KEY"
}
}
}
}
Restart your Claude Desktop application
You will see Super in the MCP tools (hammer icon at the bottom right)
Start asking questions like “Find the notes on Q2 plans and give me a summary”