Superface
Provides Superface tools for the Model Context Protocol, requiring a SUPERFACE_API_KEY.
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.jsonfile - 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.
Related Servers
Interactive Feedback MCP
An MCP server for interactive user feedback and command execution in AI-assisted development.
OpenAI GPT Image
Generate and edit images using OpenAI's GPT-4o image generation and editing APIs with advanced prompt control.
GitGuardian
Scan projects for over 500 types of secrets using GitGuardian's API to prevent credential leaks.
Fast MCP
A Ruby implementation of the Model Context Protocol (MCP) server for integrating AI models into Ruby applications.
MCP Pyrefly
A server for real-time Python code validation using Pyrefly, designed to prevent common coding errors from LLMs.
MCP Github OAuth
An MCP server with built-in GitHub OAuth support, deployable on Cloudflare Workers.
YetiBrowser MCP
YetiBrowser MCP is a fully open-source solution to allow AI assistants to easily interact with your existing browser
FluidMCP CLI
A command-line tool to run MCP servers from a single file, with support for automatic dependency resolution, environment setup, and package installation from local or S3 sources.
GemForge (Gemini Tools)
Integrates Google's Gemini for advanced codebase analysis, web search, and processing of text, PDFs, and images.
Bifrost
Exposes VSCode's development tools and language features to AI tools through an MCP server.