J

mcp

...
Created 1/6/2025bysuperfaceai

Categories

aiclaudemcpmodel-context-protocol

Language:

JavaScript

Stars:

4

Forks:

0

Website | Documentation | X (Twitter) | Support

Superface MCP Server

Use Superface tools via Model Context Protocol.

Setup

Adding tools & obtaining API Key

  1. Go to the Superface dashboard
  2. Select and add the tools you want to use with MCP Server
  3. Copy your API key in the dashboard

You'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

{
  "mcpServers": {
    "superface": {
      "command": "npx",
      "args": [
        "-y",
        "@superfaceai/mcp"
      ],
      "env": {
        "SUPERFACE_API_KEY": ""
      }
    }
  }
}

Docker

{
  "mcpServers": {
    "superface": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "SUPERFACE_API_KEY",
        "mcp/superface"
      ],
      "env": {
        "SUPERFACE_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.

Last updated: 4/11/2025

Publisher info

superfaceai's avatar

Superface

Super·interface: World's first API integration platform for AI

51
followers
0
following
52
repos

More MCP servers built with JavaScript

mcp-server-semgrep

MCP Server Semgrep is a [Model Context Protocol](https://modelcontextprotocol.io) compliant server that integrates the powerful Semgrep static analysis tool with AI assistants like Anthropic Claude. It enables advanced code analysis, security vulnerability detection, and code quality improvements directly through a conversational interface.

By Szowesgad9
protonmail-mcp

This MCP server provides email sending functionality using Protonmail's SMTP service. It allows both Claude Desktop and Cline VSCode extension to send emails on your behalf using your Protonmail credentials.

By amotivv6
agentql-mcp

Model Context Protocol server that integrates AgentQL's data extraction capabilities.

By tinyfish-io45