Developed by Anthropic, the Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to LLMs. Super MCP Server allows you to use the Super API in your MCP clients.
Super MCP server is compatible with any MCP client, such as Cursor or Claude Desktop . It lets you ask all your team data in more complex workflows.
Before you begin, ensure you have Claude Desktop correctly installed. You can take this guide as inspiration for other clients.
Head to your Super Settings → API
section. You can generate a personal key from there and replace SUPER_API_KEY
with it.
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": {
"super": {
"command": "npx",
"args": ["-y", "super-mcp-server"],
"env": {
"SUPER_API_KEY": "TO FILL"
}
}
}
}
Restart your Claude Desktop application
You will see Super in the MCP tools (hammer icon at the bottom right)
Start asking questions like “Ask Super what happened in my team this week”