MCP Server
Superface MCP Server
Provides access to various AI tools through Model Context Protocol, allowing Claude Desktop users to integrate and use Superface capabilities via API.
4
GitHub Stars
8/23/2025
Last Updated
MCP Server Configuration
1{
2 "name": "superface",
3 "command": "npx",
4 "args": [
5 "-y",
6 "@superfaceai/mcp"
7 ],
8 "env": {
9 "SUPERFACE_API_KEY": ""
10 }
11}
JSON11 lines
README Documentation
Website | Documentation | X (Twitter) | Support

Superface MCP Server
Use Superface tools via Model Context Protocol.
Setup
Adding tools & obtaining API Key
- 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.
Usage with Claude Desktop
- 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:
NPX
{
"mcpServers": {
"superface": {
"command": "npx",
"args": [
"-y",
"@superfaceai/mcp"
],
"env": {
"SUPERFACE_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Docker
{
"mcpServers": {
"superface": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SUPERFACE_API_KEY",
"mcp/superface"
],
"env": {
"SUPERFACE_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Build
Docker build:
docker build -t mcp/superface .
License
This project is licensed under the MIT license. See the LICENSE file for details.
Quick Install
Quick Actions
Key Features
Model Context Protocol
Secure Communication
Real-time Updates
Open Source