drio
Open app

Meta MCP Server

Source

A meta server for orchestrating and leveraging multiple MCP servers and tools based on user requests

Catalog onlyCatalog onlySTDIO

Overview

Meta MCP Server is a meta server designed to orchestrate and leverage multiple Model Control Protocol (MCP) servers and tools based on user requests.

To use Meta MCP Server, clone the repository, install the dependencies, configure the environment variables, and start the server. It exposes a REST API for user requests.

  • Request Analysis: Parses and understands user requests to determine intent. - Tool Discovery: Maintains a registry of available MCP tools and their capabilities. - Orchestration: Creates execution plans that may involve multiple MCP servers. - Tool Recommendation: Suggests creation of new tools when gaps are identified.
  1. Automating data extraction and visualization tasks.
  2. Coordinating multiple tools for complex workflows.
  3. Enhancing user interaction with various MCP tools through a unified interface.

Add to your AI client

Use these steps to connect Meta 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": {
    "meta-mcp-server-infinitimeless": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-meta-mcp-server-infinitimeless"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What are the prerequisites for using Meta MCP Server?

You need Node.js v18 or higher and access to one or more MCP servers/tools.

How do I start the server?

After installation, run `npm start` to start the server.

Can I contribute to the project?

Yes! Contributions are welcome, and you can submit a Pull Request.