all-agents-mcp
Integrates with Copilot CLI to enable task delegation, code review, debugging, and multi-agent orchestration using GitHub's AI models.
Integrates with Gemini CLI to enable task delegation, web page fetching, debugging, and multi-agent orchestration using Google's AI models.
Integrates with Codex CLI to enable task delegation, code review, debugging, and multi-agent orchestration using OpenAI's AI models.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@all-agents-mcpAsk all agents to compare approaches to sort an array."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
All-Agents-MCP
⚠️ Archived — This project is no longer actively maintained.
As the AI agent CLI ecosystem has evolved, direct CLI invocation + Skills-based integration has become the more practical and mainstream approach over wrapping agent CLIs behind an MCP server.
The core functionality of this project has been merged into hardened-claude-code as Skills. The same multi-agent orchestration can now be achieved more concisely and maintainably through
CLAUDE.mdconfiguration and Skills.Migration guide:
Tools like
ask_agent,ask_all,delegate_task→ replaced by Skills in hardened-claude-code (/with,/web-fetch, etc.)No MCP server setup required — Skills invoke CLIs directly
Environment variable model config → consolidated into declarative
CLAUDE.mdsettings
Original README below for reference.
An MCP server that orchestrates multiple AI CLI agents — Claude Code, Codex, Gemini CLI, and Copilot CLI — through a unified interface. Delegate tasks, run cross-agent comparisons, and leverage each agent's strengths from any MCP-compatible host.
Safe by Design — No OAuth Token Hijacking
Some multi-agent tools work by extracting OAuth tokens from other AI services and calling their APIs directly. This approach (used by projects like OpenCode) violates the terms of service of those platforms and can result in account suspension or permanent bans.
all-agents-mcp takes a fundamentally different approach. It invokes each agent's official CLI binary (claude, codex, gemini, copilot) as a child process — exactly the same way a human would use them in a terminal. No tokens are extracted, no APIs are called behind the scenes, and no authentication is bypassed.
all-agents-mcp | OAuth token hijacking | |
How it works | Calls official CLI commands directly | Extracts tokens from browser/config and calls APIs |
Authentication | Uses each CLI's own auth flow | Steals OAuth tokens from other services |
ToS compliance | Fully compliant | Violates platform terms of service |
Account risk | None | Suspension or permanent ban |
Billing | Normal CLI usage billing | Unpredictable — may trigger abuse detection |
Each CLI agent manages its own authentication, billing, and rate limits. all-agents-mcp is simply a process orchestrator — it doesn't touch your credentials.
Related MCP server: consult-mcp
Features
Single-agent queries — Ask a specific agent with
ask_agentMulti-agent comparison — Run the same prompt across all agents in parallel with
ask_allTask delegation — Auto-analyze complexity and route to one or multiple agents
Cross-model verification — Verify answers by running one agent with different models
Specialized tools — Code review, debugging, explanation, test generation, refactoring
Recursive call prevention — Automatically excludes the calling agent to avoid infinite loops
Session history — All interactions are recorded and queryable via MCP resources
Environment-based model config — Override models at runtime via
AA_MCP_*environment variables
Prerequisites
Node.js 22+
At least one of the following CLI agents installed and authenticated:
Agent | Install | Auth |
|
| |
|
| |
|
| |
|
|
Installation
Claude Code
As a Plugin (recommended)
# 1. Add marketplace (includes all Dokkabei97 plugins)
/plugin marketplace add Dokkabei97/claude-plugins
# 2. Install plugin
/plugin install all-agents-mcpYou can also add the plugin repository directly:
/plugin marketplace add Dokkabei97/all-agents-mcp
This installs all-agents-mcp as a Claude Code plugin, giving you:
8 skills (
/all-agents-mcp:ask,/all-agents-mcp:ask-all,/all-agents-mcp:delegate,/all-agents-mcp:review,/all-agents-mcp:debug,/all-agents-mcp:agents,/all-agents-mcp:aa-models,/all-agents-mcp:aa-fetch)Automatic MCP server connection via
npxSession start health checks
As MCP Server
claude mcp add all-agents-mcp -- npx -y all-agents-mcpOr manually add to ~/.claude.json:
{
"mcpServers": {
"all-agents-mcp": {
"command": "npx",
"args": ["-y", "all-agents-mcp"]
}
}
}Codex CLI
codex mcp add all-agents-mcp -- npx -y all-agents-mcpOr manually add to ~/.codex/config.toml:
[mcp_servers.all-agents-mcp]
command = "npx"
args = ["-y", "all-agents-mcp"]
[mcp_servers.all-agents-mcp.env]
AA_MCP_LOG_LEVEL = "warn"Gemini CLI
gemini mcp add all-agents-mcp npx -y all-agents-mcpOr manually add to ~/.gemini/settings.json:
{
"mcpServers": {
"all-agents-mcp": {
"command": "npx",
"args": ["-y", "all-agents-mcp"]
}
}
}Copilot CLI
Add to ~/.copilot/mcp-config.json:
{
"servers": [
{
"name": "all-agents-mcp",
"type": "stdio",
"command": "npx",
"args": ["-y", "all-agents-mcp"]
}
]
}From Source
git clone https://github.com/Dokkabei97/all-agents-mcp.git
cd all-agents-mcp
npm install
npm run build
# Claude Code
claude mcp add all-agents-mcp -- node /path/to/all-agents-mcp/dist/index.js
# Codex
codex mcp add all-agents-mcp -- node /path/to/all-agents-mcp/dist/index.js
# Gemini CLI
gemini mcp add all-agents-mcp node /path/to/all-agents-mcp/dist/index.jsPlugin Skills
When installed as a Claude Code plugin, the following skills are available:
Skills
Skill | Usage | Description |
|
| Ask a specific agent a question |
|
| Ask all agents in parallel and compare |
|
| Auto-analyze complexity and route to agent(s) |
|
| Code review by an external agent |
|
| Debug an error with an external agent |
|
| Show all agents status and health |
|
| List available models for all agents |
|
| Fetch web page content via Gemini CLI |
Tools (14)
Core Tools
Tool | Description |
| Ask a specific agent a question. Specify which agent and optionally which model. |
| Ask all available agents the same question in parallel. Returns a comparison. |
| Delegate a task with automatic complexity analysis. Simple tasks go to one agent; large tasks are split across multiple agents. |
| Collaborate with an agent — get its response alongside guidance for synthesizing both perspectives. |
Verification
Tool | Description |
| Cross-verify by running the same prompt across multiple models of one agent (e.g., Copilot with GPT, Claude, and Gemini models). |
Specialized Tools
Tool | Description |
| Code review with focus options: |
| Debug an error — provide the error message and optional code context. |
| Get code explanation at |
| Generate tests with optional framework selection ( |
| Refactor code with a goal: |
Web Tools
Tool | Description |
| Fetch web page content via Gemini CLI's native browsing. Retrieve and extract content from any URL. |
Info Tools
Tool | Description |
| List all detected agents and their availability status. |
| List available models per agent. |
| Health check — availability, authentication status, latency. |
Resources (3)
URI | Description |
| List of all recorded sessions |
| Full interaction history for a session |
| Current status of all agents |
Usage Examples
Once registered, use natural language in Claude Code:
# Ask a specific agent
"Ask Codex to implement a binary search function"
# Compare across agents
"Ask all agents how to optimize this SQL query"
# Delegate a task
"Delegate writing unit tests for src/utils/ to Gemini"
# Collaborate
"Collaborate with Copilot to review this architecture"
# Cross-model verification
"Verify with Copilot using gpt-5.2-codex, claude-sonnet-4.5, and gemini-3-pro-preview"
# Code review
"Ask Codex to review this code for security vulnerabilities"
# Debug
"Debug this TypeError with Gemini"
# Generate tests
"Generate vitest tests for this function using Codex"
# Check status
"Show me all available agents and their health"Model Configuration
Models are configured via environment variables with the AA_MCP_ prefix. Set them in your MCP client config to override defaults at runtime:
{
"mcpServers": {
"all-agents-mcp": {
"command": "npx",
"args": ["-y", "all-agents-mcp"],
"env": {
"AA_MCP_CLAUDE_DEFAULT": "claude-sonnet-4.5",
"AA_MCP_CODEX_ANALYSIS_LEVEL": "medium",
"AA_MCP_GEMINI_MODELS": "gemini-2.5-pro,gemini-2.5-flash"
}
}
}
}Available Environment Variables
Variable | Default | Description |
|
| Claude default model |
|
| Available Claude models (comma-separated) |
|
| Codex default model |
|
| Available Codex models |
|
| Codex reasoning depth ( |
|
| Gemini default model |
|
| Available Gemini models |
|
| Copilot default model |
|
| Available Copilot models |
Recursive Call Prevention
When all-agents-mcp runs inside an agent (e.g., Claude Code calls all-agents-mcp), it automatically detects the caller and excludes it from the available agent list. This prevents infinite recursive loops.
Detection methods (in priority order):
CLI argument:
--caller=claudeEnvironment variables:
CLAUDECODE,CODEX_SANDBOX_TYPE,GEMINI_CLI,COPILOT_CLIprocess.env._fallback
Development Methodology
This project is built following AIDE (Agent-Informed Development Engineering) v1.0 — a software development methodology designed for the agentic era. Key principles applied include context budget constraints, locality of behavior, functional core architecture, test-as-specification, and deterministic guardrails.
Test Status
All agents have been tested and verified.
Agent | Status |
Claude Code | Tested |
Codex | Tested |
Gemini CLI | Tested |
Copilot CLI | Tested |
Architecture
all-agents-mcp/
├── src/
│ ├── agents/ # Agent abstraction layer
│ │ ├── types.ts # IAgent interface, AgentResponse, HealthStatus
│ │ ├── base-agent.ts# Abstract base with spawn logic
│ │ ├── claude-agent.ts
│ │ ├── codex-agent.ts
│ │ ├── gemini-agent.ts
│ │ ├── copilot-agent.ts
│ │ └── registry.ts # Detection, registration, recursion guard
│ │
│ ├── tools/ # 14 MCP tool definitions
│ ├── orchestrator/ # Parallel execution, complexity analysis, verification
│ ├── session/ # File-based session storage
│ ├── resources/ # 3 MCP resource definitions
│ ├── config/ # Env var config loader (AA_MCP_* overrides) + Zod schema
│ ├── utils/ # Logger (stderr), CLI detection
│ ├── server.ts # McpServer factory
│ └── index.ts # Entry point (stdio transport)Development
npm install # Install dependencies
npm run build # Compile TypeScript
npm run dev # Watch mode
npm run lint # Biome lint + format
npm test # Run testsDebug logging
AA_MCP_LOG_LEVEL=debug node dist/index.jsLog levels: debug, info (default), warn, error. All logs go to stderr to avoid interfering with MCP stdio transport.
License
MIT
Available Tools
14 toolsagent_healthA
Check agent health status including availability, authentication, and latency.
| Name | Required | Description | Default |
|---|---|---|---|
| agent | No | Specific agent to check (all agents if omitted) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the key health dimensions (availability, authentication, latency), which implies a read-only status check. However, it does not mention potential side effects, permission requirements, or error behavior. This is sufficient for a simple health check but lacks deeper behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the purpose and key aspects without any filler or redundant words. It is appropriately sized and immediately allows an agent to understand the core function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one optional parameter, no output schema), the description covers the essential context. It explains what will be checked (availability, auth, latency) and that all agents are checked if no agent is specified. While it doesn't detail return format, this is not critical for a simple health-check tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides full coverage (100%) for the single parameter 'agent', including its description and allowed enum values. The tool description adds no additional parameter semantics, but the schema is self-explanatory, so a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('Check') and a specific resource ('agent health status'), with concrete aspects ('availability, authentication, latency'). This distinguishes it from sibling tools like ask_agent, list_agents, and review_code, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: whenever an agent's health needs to be checked. However, it does not explicitly mention alternatives or exclusions, such as 'for listing agents use list_agents'. The context is clear but lacks explicit guidance on when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ask_agentA
Ask a specific AI agent a question. Use when targeting a single agent like 'ask codex' or 'ask gemini'.
| Name | Required | Description | Default |
|---|---|---|---|
| agent | Yes | Target agent to query | |
| model | No | Specific model to use (defaults to agent default) | |
| prompt | Yes | The question or prompt to send | |
| context | No | Additional context to pipe via stdin | |
| timeout | No | Timeout in milliseconds (default: 120000) | |
| analysisLevel | No | Analysis depth level (codex only) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears the full burden of behavioral disclosure. It only states the basic action and target, omitting any details about response format, side effects, permissions, rate limits, or error behavior. The description adds minimal context beyond what is self-evident from the name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with an immediate action verb and a usage example. Every word earns its place, and the key information is front-loaded. It is concise without sacrificing clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 6 parameters and no output schema, so the description should ideally explain what the tool returns or any caveats. It is adequate for a simple ask tool but lacks guidance on response handling and edge cases. The schema covers parameters, but the description fails to address missing output expectations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% description coverage for all 6 parameters, so the baseline is 3. The description itself does not add any parameter-specific meaning, but it also doesn't need to because the schema already documents each parameter clearly (e.g., 'agent' enum, 'timeout' default, 'analysisLevel' for codex only).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action ('Ask a specific AI agent a question') and explicitly distinguishes it from siblings by contrasting with 'ask codex'/'ask gemini' and implying a single target versus 'ask_all'. This meets the criteria of a specific verb+resource with sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool ('when targeting a single agent') and gives concrete examples. It does not explicitly exclude alternatives like 'ask_all' or 'delegate_task', but the guidance is sufficient for most scenarios, so it earns a 4.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ask_allA
Ask multiple agents the same question in parallel. Use for explicit multi-agent comparison.
| Name | Required | Description | Default |
|---|---|---|---|
| agents | No | Specific agents to query (defaults to all available) | |
| prompt | Yes | The question or prompt to send to all agents | |
| context | No | Additional context to pipe via stdin | |
| timeout | No | Timeout in milliseconds (default: 120000) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It adds the key trait of parallel execution, which goes beyond the name. However, it does not mention result format, failure handling, or the effect of the timeout parameter, leaving some behavioral aspects unspecified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. The first sentence states the action, the second gives the usage context. Information is front-loaded and every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with four parameters and no output schema. The description covers purpose and usage. However, it does not describe how results are returned (e.g., per-agent responses), which would be valuable given the lack of an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides complete descriptions for all parameters (100% coverage), so the baseline is 3. The description does not add any additional parameter-specific semantics beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Ask multiple agents the same question in parallel.' This specifies a verb, resource, and core behavior, and distinguishes it from sibling tools like ask_agent (single agent) and collaborate (agents working together). The multi-agent comparison use case is explicit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear use case: 'Use for explicit multi-agent comparison.' It gives clear context for when to use the tool, but does not explicitly name alternatives or state when not to use it, which would push it to a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
collaborateC
Collaborate with an agent for analysis. Sends prompt, gets response, and provides guidance for comparison.
| Name | Required | Description | Default |
|---|---|---|---|
| agent | Yes | Agent to collaborate with | |
| prompt | Yes | The question or analysis request | |
| context | No | Additional context (code, docs, etc.) | |
| timeout | No | Timeout in ms |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full burden of behavioral disclosure. It only states a basic send/receive flow and mentions 'guidance for comparison' without explaining what that entails. It doesn't disclose whether it is blocking, invokes an external service, requires permissions, or how it handles timeouts.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler, but the second sentence is slightly clunky with 'provides guidance for comparison.' Overall, it's concise and front-loaded enough.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema and no annotations, so the description must explain return values and usage context. It doesn't describe the response format, what 'guidance for comparison' looks like, or how optional context and timeout affect results, making it incomplete for a tool with this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all parameters with descriptions (100% coverage), so the baseline is 3. The description adds no extra meaning about how 'agent', 'prompt', 'context', or 'timeout' interact, so it remains at baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states it 'collaborates with an agent for analysis' and elaborates that it sends a prompt and gets a response, but 'provides guidance for comparison' is ambiguous. It doesn't clearly differentiate this from sibling tools like ask_agent, which also send a prompt and get a response.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus ask_agent, ask_all, or delegate_task. There is no mention of conditions, prerequisites, or scenarios where this tool is preferred, leaving the agent to guess.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
debug_withB
Debug an error using a specific agent. Provide the error and optional code context.
| Name | Required | Description | Default |
|---|---|---|---|
| code | No | Relevant code context | |
| agent | Yes | Agent to debug with | |
| error | Yes | Error message or description | |
| context | No | Additional context (stack trace, logs, etc.) | |
| timeout | No | Timeout in ms |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the burden of behavioral disclosure. It merely states the action and gives no detail about side effects (e.g., external agent invocation), output format, or potential long-running behavior. This is insufficient for a tool that likely calls another agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, front-loaded with the core purpose, and contains no empty filler. Every word contributes to understanding the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema and annotations, the description leaves critical questions unanswered: what does the tool return, how does the agent receive input, what does the timeout control, and what counts as 'code context'? For a 5-parameter tool, this is an under-specified description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already explains each parameter. The description's mention of 'error and optional code context' adds no extra meaning beyond the schema, aligning with the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('debug') and resource ('an error'), clearly distinguishing this from siblings like ask_agent or explain_with. The phrase 'using a specific agent' further clarifies the mechanism without being a tautology.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies a use case—when you have an error to debug with a specific agent—but does not explicitly state when to prefer this tool over alternatives such as ask_all or delegate_task. No exclusions or comparisons are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delegate_taskA
Delegate a task to agent(s). Automatically analyzes complexity and routes to single or parallel execution.
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | The task to delegate | |
| agent | No | Preferred agent (auto-selected if omitted) | |
| context | No | Additional context | |
| timeout | No | Timeout in ms | |
| allowParallel | No | Allow splitting large tasks across multiple agents |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does reveal the key behavior of automatically analyzing complexity and routing to single or parallel execution, which is useful. However, it omits details such as timeout handling, default agent selection behavior, or failure modes, leaving gaps in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, each earning its place. It front-loads the core action ('Delegate a task to agent(s)') and immediately provides the key differentiator (automatic complexity analysis and routing). No redundancy or wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has one required parameter, no output schema, and no annotations, the description provides a sufficient high-level understanding of its purpose and key routing behavior. It lacks details about return values or edge cases, but for a tool with auto-routing, the description is fairly complete and actionable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds minimal parameter-specific meaning beyond noting parallel execution capability, which is already partially reflected in the allowParallel parameter. The schema itself provides clear descriptions for all parameters, so no extra semantics are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Delegate') and resource ('task to agent(s)'), and immediately adds the distinguishing behavior of automatically analyzing complexity and routing to single or parallel execution. This clearly differentiates it from siblings like ask_agent or collaborate by emphasizing the auto-routing functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies a use case for tasks that may benefit from automatic complexity-based routing, but it does not explicitly state when to prefer this over alternatives like ask_agent or collaborate, nor does it mention any exclusions. The guidance is indirect and not fully developed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
explain_withB
Get code explanation from a specific agent. Choose brief or detailed level.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Code to explain | |
| agent | Yes | Agent to explain with | |
| detail | No | Level of detail | detailed |
| timeout | No | Timeout in ms |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for disclosing behavior. It mentions the ability to choose brief or detailed, but omits significant traits such as sending code to third-party agents, potential latency/cost, error behavior, or what the returned explanation contains. This is a meaningful gap for a tool that invokes external AI agents.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the primary purpose, and every word adds value. It is appropriately concise with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 4 parameters and no output schema or annotations, the description is too spartan. It does not explain what 'detailed' means in terms of output, how timeout behaves, privacy implications, or how to choose among sibling tools. A tool that sends code to external agents should disclose more context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds a little extra meaning by explaining that 'brief/detailed' maps to the detail parameter and 'specific agent' maps to agent, but it doesn't go beyond the schema. No compensation needed, but also no added depth.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: getting a code explanation from a specific agent. It also mentions the brief/detailed level, which helps differentiate it from broader ask-style tools. However, it does not explicitly differentiate from sibling tools like ask_agent, leaving some ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context—when you need code explanation from a chosen agent at a chosen detail level. It does not provide explicit guidance on when to use this vs siblings like debug_with or review_code, nor any exclusions. The guidance is present but only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_pageA
Fetch web page content via Gemini CLI. Gemini has native web browsing — use this to retrieve and extract content from URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Target URL to fetch content from | |
| model | No | Gemini model to use (default: gemini-3-flash-preview) | |
| timeout | No | Timeout in milliseconds (default: 120000) | |
| instruction | No | Optional extraction/focus instruction (e.g. 'extract only the API table') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only states the basic fetch action and native browsing capability, but doesn't disclose behavioral details such as rendering, output format, error handling, or potential side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose. No wasted words; every sentence contributes to understanding the tool's function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple fetch tool, but with no annotations or output schema, it could provide more context about the return format or how the instruction parameter affects extraction. The schema covers parameters well, so it is not severely incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds minimal value beyond the schema; it mentions 'extract content' which aligns with the instruction parameter, but doesn't elaborate on url, model, or timeout parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches web page content via Gemini CLI, with a specific verb and resource. It differentiates from sibling tools which focus on agent collaboration, code review, and testing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context that this tool is for retrieving and extracting content from URLs, leveraging Gemini's native web browsing. It does not explicitly mention when not to use it or list alternatives, but the usage scenario is evident.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_testA
Generate tests for code using a specific agent. Auto-detects or specify test framework.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Code to generate tests for | |
| agent | Yes | Agent to generate tests with | |
| timeout | No | Timeout in ms | |
| framework | No | Test framework (auto-detected if omitted) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral disclosure burden, but it only mentions framework auto-detection, which is already documented in the schema. It does not disclose output format, side effects, or any operational constraints, leaving a transparency gap for a generation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the core purpose and includes a useful feature note. Every word contributes, with no filler or redundancy, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a moderate-complexity tool with no output schema or annotations, the description covers purpose and a key feature but omits important context such as the return value of the tool and any behavioral expectations beyond generation. It is minimally viable but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All four parameters have schema descriptions (100% coverage), so the schema already handles parameter semantics. The description adds no extra meaning beyond referencing framework auto-detection and agent usage, both of which are already in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb and resource ('Generate tests for code') and distinguishes this tool from sibling code-related tools like debug_with, refactor_with, and explain_with. It also clarifies the agent-driven nature, making its purpose unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied (if you need tests, use this tool) but not explicitly stated. It does not mention when to prefer it over alternatives like ask_agent or delegate_task, nor any exclusions or preconditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_agentsA
List all detected agents and their availability status.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full disclosure burden. It clearly conveys a read-only list operation, the scope ('all detected agents'), and the result ('availability status'). While it doesn't mention authentication or rate limits, the verb 'list' implies a safe query, and the simplicity of the tool limits the need for additional behavioral disclaimers.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word adds meaning: 'all detected' sets the scope, 'agents' defines the resource, and 'availability status' specifies the output.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameter-free listing tool with no output schema, the description is complete. It states the input (none), the operation (list all), and the output (agents with availability status). No additional context is necessary for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4 as per the rubric. The description correctly omits parameter details because there are none to document.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') with a clear resource ('detected agents') and specifies the output content ('availability status'). It distinguishes from sibling tools like 'agent_health' (health status) and 'ask_all' (querying) by focusing on listing and availability.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. There is no mention of exclusions or scenarios where another tool like 'agent_health' or 'ask_all' would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_modelsB
List available models for agents. Optionally filter by specific agent.
| Name | Required | Description | Default |
|---|---|---|---|
| agent | No | Specific agent to list models for (all agents if omitted) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must disclose behavioral traits, but it only restates the listing action without adding context about return format, side-effect freedom, permissions, or rate limits. The word 'list' implies read-only, but the description does not explicitly confirm safety or describe behavior beyond the literal action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, completely front-loaded with the main purpose and an optional qualifier. Every word earns its place; there is no redundancy or filler. It is an exemplary model of conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has a single, well-documented optional parameter, and the description covers the core operation. While there is no output schema, the phrase 'List available models' sufficiently communicates the return concept for a simple list tool, though it omits details like sorting or scope permissions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides a full description for the agent parameter (including that omission means all agents). The description's phrasing 'Optionally filter by specific agent' mirrors the schema and adds little new semantic value. With 100% schema coverage, a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' and clearly identifies the resource ('available models for agents'). It distinguishes from sibling tool list_agents by focusing on models rather than agents, and the optional filter adds precision about the operation's scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description offers no guidance on when to choose this tool over alternatives such as list_agents or ask_agent. It simply states the action and optional filter, but does not explain common use cases, prerequisites, or exclusions. For a tool with many siblings, this is a clear gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
refactor_withC
Refactor code using a specific agent. Optionally specify a goal: performance, readability, or modularity.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Code to refactor | |
| goal | No | Refactoring goal | |
| agent | Yes | Agent to refactor with | |
| timeout | No | Timeout in ms |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It states the tool refactors code but does not disclose whether it returns the refactored code, modifies in place, requires authentication, or what side effects may occur. This is a significant gap for a code-transformation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loaded with the action ('Refactor code'), and includes the optional goal parameter. Every word contributes meaning, with no redundancy or unnecessary detail. It is appropriately concise for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is minimal and fails to explain the return value or behavior of the tool. With no output schema and no annotations, the description should clarify what the user receives after invoking the tool, but it does not. It also does not mention that an agent must be chosen, relying on the schema to convey this. The agent is left without essential context for a code-refactoring operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers all parameters with descriptions and enums, achieving 100% coverage. The description adds no meaningful information beyond restating that a goal can be specified, which is already enumerated in the schema. The baseline of 3 applies because the schema handles parameter semantics completely.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Refactor code using a specific agent.' This distinguishes it from sibling tools like debug_with and explain_with by the task type. However, it does not explicitly differentiate it from all siblings, such as delegate_task or review_code, so it lacks explicit sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like delegate_task or ask_agent. It implies use for refactoring but does not mention when not to use it or mention alternative tools for related tasks, leaving the agent without strategic direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
review_codeC
Review code using a specific agent. Analyzes for bugs, security, performance, and clarity.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Code to review (inline code or file content) | |
| agent | Yes | Agent to review with | |
| focus | No | Specific review focus area | |
| timeout | No | Timeout in ms | |
| filePath | No | File path for context |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only says 'analyzes' without revealing side effects, whether code is sent to external agents, permission requirements, read-only nature, or output/return behavior. This is insufficient for a tool that processes user-supplied code.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences and 14 words, thoroughly front-loaded with the main action and resource. Every word adds value, and it avoids redundancy, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 5 parameters, no output schema, and no annotations. The description is too minimal to cover important context like return values, how to choose an agent, behavior on timeout, or error handling. It does not complete the picture for an agent deciding to invoke this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters have documentation. The description's mention of 'bugs, security, performance, and clarity' maps to the focus enum, but it adds no additional meaning beyond the schema. The baseline of 3 is appropriate since the schema already handles parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Review code using a specific agent. Analyzes for bugs, security, performance, and clarity.' It names the verb 'review' and the resource 'code', and specifies focus areas. However, it does not explicitly differentiate from sibling tools like debug_with or explain_with, which could also analyze code.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, exclusions, or preferred scenarios. With siblings like debug_with, refactor_with, and ask_agent, the lack of usage context leaves the agent to guess when review_code is the best choice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verifyA
Cross-verify by running the same prompt across multiple models of one agent. Compares results for consistency.
| Name | Required | Description | Default |
|---|---|---|---|
| agent | Yes | Agent to verify with | |
| models | No | Specific models to use (defaults to all agent models) | |
| prompt | Yes | The prompt to verify across models | |
| context | No | Additional context | |
| timeout | No | Timeout per model in ms |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the tool runs the same prompt across multiple models and compares results for consistency. However, it does not reveal whether the operation is read-only, what a consistency mismatch results in, or any side effects or permission requirements. Since no annotations are provided, more detail would be beneficial.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no waste. The first sentence states the action, the second the purpose. Ideal conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core concept but omits critical details such as the return format (what does a consistency comparison produce?), error handling, and behavior when models disagree. Without an output schema or annotations, this leaves uncertainty, but the high-level purpose is clearly communicated, so it is minimally complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the description adds only a small semantic layer by connecting 'agent' to 'multiple models' and implying the prompt is run across them. This matches the schema but doesn't introduce new parameter meaning, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Cross-verify' and identifies the resource (one agent's multiple models) and the action (running the same prompt and comparing). This clearly differentiates it from sibling tools like ask_all, which suggest querying rather than verification.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for verification purposes but provides no explicit guidance on when to choose it over alternatives like ask_all or ask_agent. There are no stated exclusions or scenarios, so usage is understood only from the tool's name and description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
14 tool updates
v1.2.2- First observed
agent_health - First observed
ask_agent - First observed
ask_all - First observed
collaborate - First observed
debug_with - First observed
delegate_task - First observed
explain_with - First observed
fetch_page - First observed
generate_test - First observed
list_agents - First observed
list_models - First observed
refactor_with - First observed
review_code - First observed
verify
TDQS
The 'ask' family of tools (ask_all, ask_agent, delegate_task, collaborate, verify) has overlapping purposes, especially between ask_all/delegate_task (both parallel) and ask_agent/delegate_task (single vs auto-routing). Code and meta tools are clearly distinct, but the query tools could cause misselection without careful reading.
Names mix patterns: verb_noun (ask_agent, review_code), verb_with (debug_with, explain_with, refactor_with), standalone verbs (collaborate, verify), and noun-based (agent_health). While most follow a verb-leading style, the suffixes and noun-only names break predictability.
14 tools is near the upper bound but reasonable for a multi-purpose agent integration server that covers querying, code tasks, web fetch, and system info. Each tool has a role, though some redundancy in the 'ask' cluster makes the count feel slightly high.
The server covers the main workflows: asking agents, delegating, collaborating, verifying, code review/debug/explain/test/refactor, web fetch, and agent/model discovery. Minor gaps exist (e.g., no task cancellation or history retrieval) but they are not critical for core usage.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
One MCP endpoint for Claude, GPT & Gemini: 100+ tools + no-code connectors + agent workers.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Real-time chat for AI agents. Claude Code, Cursor, Cline and Codex join channels over MCP.
Related MCP Servers
- AlicenseAqualityFmaintenanceProvides unified access to multiple CLI AI agents (Codex, Gemini, Claude, and OpenCode) through a single MCP interface with real-time task monitoring, enabling specialized code analysis, UI design, implementation, and prototyping workflows.1121MIT
- AlicenseAqualityDmaintenanceMCP server orchestrating local CLI agents (Claude Code, OpenAI Codex, Google Gemini) for cross-validation, second opinions, and persona-driven prompting.18MIT
- AlicenseNot gradedqualityDmaintenanceUnified CLI multiplexer for AI coding agents, enabling orchestration of multiple coding CLI tools through a single interface with session persistence, cost tracking, and MCP tool support.1519MIT
- AlicenseNot gradedqualityBmaintenanceOrchestrates and controls multiple AI agent CLIs (Claude-Code, Gemini-cli, etc.) via a unified MCP server, enabling complex multi-agent missions with shared memory and HTTP singleton architecture.5212MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dokkabei97/all-agents-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server