Use Super MCP

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.


Walkthrough and demo for Claude



Setup guide for Claude

Before you begin, ensure you have  Claude Desktop  correctly installed. You can take this guide as inspiration for other clients.


Grab your API Key

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.


Configure Claude to use Super 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"
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"
}
}
}
}


Start Using MCP on Claude

    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”