Slite MCP

Developed by Anthropic, the  Model Context Protocol  (MCP) is an open protocol that standardizes how applications provide context to LLMs.
The 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 .

1) Install Claude Desktop or any other MCP client

Before you begin, make sure you have  Claude Desktop  correctly installed.
You can take the guide above as inspiration for other clients.

2) Create a personal API Key

    Click your workspace logo in the top-left corner.
    Select Settings from the menu, then go to the API section.
    In the Account security sub-section, click Add external authenticator next to 2-factor authentication.
    Click Create new key .
Personal API keys should not be shared — they grant access to all the sources you have access to.

3) Configure Claude to use Slite MCP

You need to edit the Claude configuration file to enables it to connect to MCP servers.
# Create the Claude desktop config file if it doesn't exist
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"

# Opens the config file in TextEdit
open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json"

# Alternative method using Visual Studio Code
code "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
Then, 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"
}
}
}
}

4) Start Using MCP on Claude

    Restart your Claude Desktop application
    You will see Slite 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”