drio
Open app

SuperiorAPIs MCP Server Tool

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Server is a Python-based tool that dynamically fetches plugin definitions from SuperiorAPIs and auto-generates MCP tool functions based on OpenAPI schemas.

To use MCP Server, clone the project repository, install the dependencies, set the required environment variables, and run the server using the command python main.py.

  • Dynamic plugin loading from SuperiorAPIs - Auto-generation of pydantic models and async functions - Asynchronous API execution using aiohttp - Runtime MCP tool registration - Supports environment-based configuration - Ready for UVX platform deployment
  1. Automating API interactions with dynamic tool generation.
  2. Simplifying the integration of various plugins into applications.
  3. Enhancing development workflows with asynchronous API calls.

Add to your AI client

Use these steps to connect SuperiorAPIs MCP Server Tool in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-cteaminfo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-cteaminfo"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-cteaminfo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-cteaminfo"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-cteaminfo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-cteaminfo"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-cteaminfo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-cteaminfo"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-cteaminfo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-cteaminfo"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-cteaminfo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-cteaminfo"
      ]
    }
  }
}

FAQ

What programming language is MCP Server built with?

MCP Server is built using Python.

How do I install MCP Server?

Clone the repository and run `pip install -r requirements.txt` to install the dependencies.

Can I run MCP Server in a Docker container?

Yes! MCP Server can be built and run using Docker.