https://github.com/superfaceai/mcp
Model Context Protocol Server with Superface tools
https://github.com/superfaceai/mcp
ai claude mcp model-context-protocol
Last synced: 2 months ago
JSON representation
Model Context Protocol Server with Superface tools
- Host: GitHub
- URL: https://github.com/superfaceai/mcp
- Owner: superfaceai
- License: mit
- Created: 2025-01-06T18:29:11.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-04-11T10:07:57.000Z (2 months ago)
- Last Synced: 2025-04-11T11:56:52.887Z (2 months ago)
- Topics: ai, claude, mcp, model-context-protocol
- Language: JavaScript
- Homepage: https://superface.ai
- Size: 48.8 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- mcp-index - Superface Server - Facilitates integration of Superface tools with AI agents using the Model Context Protocol, providing access to various external APIs and services. Configurable for local or Docker use with an API key from the Superface dashboard. (APIs and HTTP Requests)
README
[Website](https://superface.ai) | [Documentation](https://docs.superface.ai) | [X (Twitter)](https://twitter.com/superfaceai) | [Support](mailto:[email protected])
# Superface MCP Server
Use Superface tools via Model Context Protocol.
## Setup
### Adding tools & obtaining API Key
1. Go to the [Superface dashboard](https://pod.superface.ai/hub/api)
2. Select and add the tools you want to use with MCP Server
3. Copy your API key in the dashboardYou'll need this API key for the MCP Server configuration.
### Usage with Claude Desktop
1. Open Claude Desktop
2. Go to Settings (click on your profile picture or ⌘ + ,)
3. Open "Developer" tab
4. Click "Edit Config"
5. Open `claude_desktop_config.json` file
6. Add the following configuration:#### NPX
```json
{
"mcpServers": {
"superface": {
"command": "npx",
"args": [
"-y",
"@superfaceai/mcp"
],
"env": {
"SUPERFACE_API_KEY": ""
}
}
}
}
```#### Docker
```json
{
"mcpServers": {
"superface": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SUPERFACE_API_KEY",
"mcp/superface"
],
"env": {
"SUPERFACE_API_KEY": ""
}
}
}
}
```## Build
Docker build:
```bash
docker build -t mcp/superface .
```## License
This project is licensed under the MIT license. See the [LICENSE](./LICENSE) file for details.