MetaMCP
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| METAMCP_VOYAGE_API_KEY | No | Set to opt into Voyage-backed semantic search. Discovery queries will then be sent to Voyage and the optional local SQLite vector index will be enabled. | |
| METAMCP_ALLOWED_ORIGINS | No | Browser requests with an Origin header are denied unless the exact origin is supplied with --allow-origin or METAMCP_ALLOWED_ORIGINS. | |
| METAMCP_HTTP_BEARER_TOKEN | No | Configure OAuth resource-server validation or set this before exposing the HTTP listener. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| mcp_discoverA | Search tool catalogs across all child MCP servers + list server status. If no query, returns server list with status and tool counts. |
| mcp_provisionB | Intent-based provisioning. Describe what you need, MetaMCP resolves and provisions the right server. |
| mcp_callB | Forward a tool call to a specific child MCP server. Retries once on crash. |
| mcp_executeA | Code-mode execution in V8 sandbox. Access provisioned servers via |
| mcp_skill_discoverA | Search Claude Code skills with MCP readiness status. Returns skills matching query with their required MCP servers and availability. |
| mcp_skill_adviseA | Pre-flight readiness check for a skill. Returns MCP server availability and recommendations. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: discovery of servers/tools, provisioning, forwarding tool calls, code execution, skill discovery, and skill readiness checking. No two tools have overlapping functionality.
All tools follow the 'mcp_<verb>' pattern, with skill-specific tools adding 'skill_' for clarity. The naming is consistent and predictable.
With 6 tools, the set is well-scoped for a meta-server. It covers the essential operations without being excessive or insufficient.
The tool surface covers discovery, provisioning, calling, execution, and skill support. Minor gaps exist (e.g., no explicit unprovisioning or server management), but core agent workflows are well-supported.