drio
Open app

API MCP Server

Source

A middleware of MCP Servers

Catalog onlyCatalog onlySTDIO

Overview

API MCP Server is a middleware solution designed to facilitate the management and integration of multiple applications through a centralized server.

To use API MCP Server, configure your applications and integrations through the provided AppConfig and IntegrationConfig tools, ensuring secure storage of credentials and active connections.

  • Centralized management of application integrations - Secure storage of integration credentials - Support for various authentication methods (e.g., OAuth, API_KEY)
  1. Managing multiple application integrations in a single environment.
  2. Facilitating secure connections between applications and their respective APIs.
  3. Streamlining the authentication process for various applications.

Add to your AI client

Use these steps to connect API MCP Server 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": {
    "middleware-agentrdev": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-middleware-agentrdev"
      ]
    }
  }
}

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": {
    "middleware-agentrdev": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-middleware-agentrdev"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What types of integrations does API MCP Server support?

API MCP Server supports various integrations including OAuth and API_KEY methods.

Is API MCP Server secure?

Yes! API MCP Server securely stores credentials and manages connections to ensure data safety.

Can I use API MCP Server for any application?

Yes! API MCP Server is designed to work with a wide range of applications that require integration.