super-mcp-server
v1.0.0
Published
'Super MCP server'
Maintainers
Readme
Super Model Context Protocol
This package provides a Model Context Protocol server for integrating Super's OpenAPI functionality with AI models that support function calling through MCP.
Installation & Usage
You can run the Super MCP server directly using npx:
npx -y super-mcp --api-key=YOUR_SUPER_API_KEYAlternatively, you can set your API key as an environment variable:
export SUPER_API_KEY=YOUR_SUPER_API_KEY
npx -y super-mcpAvailable Tools
| Tool Name | Description | Parameters |
| --------- | ----------------------------------------------------------- | ---------------------------------------------- |
| ask | Asks a question to Super and returns an answer with sources | question (string): The question to ask Super |
Command Line Options
| Option | Description |
| ------------ | --------------------------------------------------------------- |
| --api-key | Your Super API key (required unless SUPER_API_KEY env is set) |
| --base-url | Custom API base URL (default: https://api.slite.com/v1) |
| --help, -h | Show help text |
Usage with Claude
Add the following to your claude_desktop_config.json. See the MCP documentation for more details.
To ensure compatibility with Claude, we recommend that npx command be accessible within the same environment. A common location for this is /usr/local/bin/node (on mac)
{
"mcpServers": {
"super": {
"command": "npx",
"args": ["-y", "super-mcp-server"],
"env": {
"SUPER_API_KEY": "YOUR_SUPER_API_KEY"
}
}
}
}or
{
"mcpServers": {
"super": {
"command": "npx",
"args": ["-y", "super-mcp-server", "--api-key=YOUR_SUPER_API_KEY"]
}
}
}Development
Clone the repository and install dependencies:
git clone [email protected]:sliteteam/super-mcp-server.git
cd super-mcp-server
npm installAvailable Scripts
| Script | Description |
| ---------------- | ---------------------------- |
| npm run build | Build the TypeScript project |
| npm run lint | Run ESLint |
| npm run format | Format code with Prettier |
License
This project is licensed under the MIT License - see the LICENSE file for details.
