Website | Documentation | X (Twitter) | Support
Use Superface tools via Model Context Protocol.
- Go to the Superface dashboard
- Select and add the tools you want to use with MCP Server
- Copy your API key in the dashboard
You'll need this API key for the MCP Server configuration.
- Open Claude Desktop
- Go to Settings (click on your profile picture or ⌘ + ,)
- Open "Developer" tab
- Click "Edit Config"
- Open
claude_desktop_config.json
file - Add the following configuration:
{
"mcpServers": {
"superface": {
"command": "npx",
"args": [
"-y",
"@superfaceai/mcp"
],
"env": {
"SUPERFACE_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
{
"mcpServers": {
"superface": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SUPERFACE_API_KEY",
"mcp/superface"
],
"env": {
"SUPERFACE_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Docker build:
docker build -t mcp/superface .
This project is licensed under the MIT license. See the LICENSE file for details.