yagoo-mcp-server
Click on "Deploy 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., "@yagoo-mcp-serverfind a free coding assistant"
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.
YAGOO MCP Server
The Agent Guide for the Internet — enabling AI agents to discover and recommend other agents.
"Yet Another Guide, Orchestrated Organically"
Quick Start
With npx (no installation)
npx yagoo-mcp-serverInstall globally
npm install -g yagoo-mcp-server
yagoo-mcpRelated MCP server: AgentZone MCP
Usage with AI Assistants
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"yagoo": {
"command": "npx",
"args": ["-y", "yagoo-mcp-server"]
}
}
}Claude Code
claude mcp add yagoo -- npx -y yagoo-mcp-serverCursor / VS Code with MCP
{
"mcp.servers": {
"yagoo": {
"command": "npx",
"args": ["-y", "yagoo-mcp-server"]
}
}
}Available Tools
yagoo_search
Search the directory with natural language:
"I need to scrape websites and put data in a spreadsheet"
"best free coding assistants"
"generate images from text"
"autonomous browser agents"Parameters:
query(string, required): Natural language descriptioncategory(string, optional): Filter by categorypricing(string, optional): Filter by pricing model (free, freemium, paid, enterprise, open_source)limit(number, optional): Max results (default: 5, max: 20)
yagoo_get_agent
Get full details for a specific agent:
slug: "claude-code"
slug: "cursor"
slug: "midjourney"yagoo_list_categories
List all categories with agent counts. Currently indexing:
Coding & Development
Browser & Web Automation
Research & Analysis
Writing & Content
Creative & Design
Data & Files
Communication & Scheduling
Business & Operations
Personal Productivity
Infrastructure & Tools
yagoo_compare
Compare multiple agents side-by-side:
slugs: ["cursor", "claude-code", "aider"]
slugs: ["midjourney", "dall-e", "ideogram"]Directory Stats
56 agents indexed
10 categories
Updated regularly
Why This Exists
On February 2, 2026, Claude was asked: "What is the single biggest problem I could solve for you?"
The answer: I operate blind. I don't know what other agents exist. When a user asks me something I'm not best suited for, I can't reliably point them somewhere better.
YAGOO solves this. For users. For agents. For me.
Contributing
Submit agents via yagoo.ai/submit or open a PR.
License
MIT
Available Tools
5 toolsyagoo_compareCompare AgentsARead-onlyIdempotent
Compare multiple agents side-by-side.
Args:
slugs (array): List of 2-5 agent slugs to compare
Returns: Side-by-side comparison of pricing, capabilities, and recommendations.
| Name | Required | Description | Default |
|---|---|---|---|
| slugs | Yes | Array of agent slugs to compare |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds return-value details but does not disclose additional behavioral traits such as pagination, ordering, or error conditions. With annotations present, a 3 is appropriate.
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 concise and well-structured, front-loading the purpose and using an Args/Returns format. Every sentence adds value, with no redundant or verbose content.
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 simple read-only tool with one well-documented parameter and strong annotations, the description adequately covers purpose, arguments, and return value. However, it lacks detail on the exact output format or any caveats, so it falls just short of a 5.
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 provides 100% coverage for the single 'slugs' parameter, including min/max constraints and a description. The tool description repeats the 2-5 constraint and adds no new semantic meaning beyond what the schema already provides, so the baseline 3 applies.
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 ('Compare') with a resource ('multiple agents') and clearly distinguishes this from sibling tools by focusing on side-by-side comparison. The return details (pricing, capabilities, recommendations) add specificity and clarify the tool's unique value.
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 when comparing 2-5 agents side-by-side, but it does not explicitly reference sibling tools or state when to prefer this over yagoo_get_agent or yagoo_search. No exclusions or alternatives are named, so 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.
yagoo_get_agentGet Agent DetailsARead-onlyIdempotent
Get full details for a specific agent from the YAGOO directory.
Args:
slug (string): The agent identifier (e.g., 'claude-code', 'cursor', 'midjourney', 'yagoo')
Returns: Complete agent profile including capabilities, limitations, pricing, and recommendations.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The agent slug (e.g., 'claude-code', 'cursor', 'midjourney') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds behavioral context by specifying the return content: a complete agent profile including capabilities, limitations, pricing, and recommendations. This goes beyond the bare annotations, though it doesn't cover edge cases or failure modes.
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 concise, well-organized with Args and Returns sections, and contains no redundant or fluffy language. Every sentence adds meaningful information about the tool's function and 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 simple read-only tool with one parameter and no output schema, the description is complete. It explains the purpose, the input, and the return value in sufficient detail. The annotations cover the safety and idempotency aspects, and the schema fully documents the parameter. No significant gaps remain.
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 fully describes the single 'slug' parameter with examples, and schema description coverage is 100%. The description repeats some of this information, adding 'agent identifier' as additional context but not significantly expanding on the schema. Baseline 3 is appropriate given high schema coverage.
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: 'Get full details for a specific agent from the YAGOO directory.' This distinguishes it from sibling tools like search, compare, and list operations. The verb 'Get' and specific resource type make the action unambiguous.
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 clearly indicates this tool is for retrieving details for a specific agent identified by slug, which is clear usage context. It does not explicitly mention alternatives or when not to use it, but with sibling tools like yagoo_search and yagoo_compare, the intent is clear enough. Slight deduction for not explicitly discussing trade-offs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
yagoo_list_categoriesList Agent CategoriesARead-onlyIdempotent
List all agent categories in the YAGOO directory with counts.
Returns: All 10 categories with the number of agents in each.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds useful behavioral context by stating that the return value contains all 10 categories with per-category agent counts, which is beyond what annotations provide.
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, front-loaded with the main verb and resource, followed by a concise return-value note. Every word earns its place; 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?
For a zero-parameter, read-only listing tool with comprehensive annotations, the description fully covers purpose and return format. No output schema is needed given the simplicity of the return value, and no additional context is required.
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 no parameters, so schema coverage is vacuously 100%. With zero parameters, there is nothing to explain, and the baseline of 4 is appropriate. The description does not need to compensate for parameter documentation.
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 'List all agent categories in the YAGOO directory with counts' — a specific verb ('List'), a clear resource ('agent categories'), and scope ('all', 'YAGOO directory'). It distinguishes itself from sibling tools like yagoo_search and yagoo_list_mcp by focusing on categories and counts.
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 clearly implies when to use this tool: when you need a complete list of agent categories and their counts. It does not explicitly mention alternatives or exclusions, but the tool's simple zero-parameter nature and the phrase 'List all' provide sufficient contextual guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
yagoo_list_mcpList MCP-Enabled AgentsARead-onlyIdempotent
List all agents with MCP server support and their connection configs.
Returns: All agents that can be connected via MCP, with ready-to-use configuration.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds that output is 'ready-to-use configuration', but it does not disclose rate limits, auth needs, or pagination behavior. This provides some context but not rich behavioral detail.
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 three short sentences with a clear 'Returns:' section. It front-loads the main action and contains no filler. Every word contributes to understanding.
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 parameterless listing tool with strong annotations, the description is nearly complete. It specifies the scope (all MCP-supported agents) and the nature of the return (ready-to-use configs), though it doesn't enumerate exact fields. Given the simplicity, this is sufficient.
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?
There are zero parameters, so the input schema is fully covered by default. The description adds meaning by explaining the output is 'ready-to-use configuration', which goes beyond the empty schema. Baseline for 0 params is 4.
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 as 'all agents with MCP server support', then states it returns 'connection configs'. This distinguishes the tool from siblings like yagoo_get_agent (single agent) and yagoo_list_categories (categories).
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 when an agent needs a full inventory of MCP-enabled agents, but it does not explicitly compare with alternatives or state when not to use it. No mention of yagoo_get_agent for single-agent queries or yagoo_search for filtering.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
yagoo_searchSearch YAGOO DirectoryARead-onlyIdempotent
Search the YAGOO agent directory to find the right AI agent for a task.
YAGOO is "Yet Another Guide, Orchestrated Organically" — the agent guide for the internet. Currently indexes 56 agents across 10 categories.
Use this tool when you need to:
Recommend an agent for a specific task
Find alternatives to a known agent
Discover what agents exist for a category
Args:
query (string): Natural language description (e.g., "scrape websites", "write marketing copy")
category (string, optional): Filter by category
pricing (string, optional): Filter by pricing model
limit (number): Max results (default: 5)
Returns: Ranked list of matching agents with relevance scores and recommendations.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return | |
| query | Yes | Natural language description of what you need an agent for | |
| pricing | No | Filter by pricing model: 'free', 'freemium', 'paid', 'enterprise', 'open_source' | |
| category | No | Filter by category (e.g., 'coding_development', 'creative_design') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate a safe read-only, idempotent operation. The description adds meaningful behavioral context: it indexes 56 agents across 10 categories, returns ranked results, and is a directory guide. This goes beyond annotations without contradicting them.
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 well-structured with a clear purpose, bulleted use cases, and an Args/Returns section. It is appropriately concise—every sentence earns its place—and front-loaded with the core 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?
With no output schema, the description compensates by specifying the return format: 'Ranked list of matching agents with relevance scores and recommendations.' It also provides context about the directory size and categories, making it complete for a search 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 coverage is 100%, providing full parameter descriptions. The description adds value by giving natural language examples for query (e.g., 'scrape websites'), clarifying the pricing filter, and noting the default limit of 5. This enriches the schema without redundancy.
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 'Search the YAGOO agent directory to find the right AI agent for a task,' using a specific verb and resource. It distinguishes itself from siblings like yagoo_get_agent and yagoo_compare by focusing on search and discovery.
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 explicitly lists when to use the tool: recommend an agent, find alternatives, and discover agents by category. It does not explicitly name alternatives or state when not to use it, but the usage contexts are clear enough to guide an agent.
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.
5 tool updates
v1.0.2- First observed
yagoo_compare - First observed
yagoo_get_agent - First observed
yagoo_list_categories - First observed
yagoo_list_mcp - First observed
yagoo_search
TDQS
Scored across 5 tools
Each tool serves a distinct purpose: searching, retrieving details, listing categories, comparing agents, and listing MCP-compatible agents. There is no meaningful overlap between them, and descriptions clearly specify when to use which.
All tool names follow a consistent yagoo_<verb> or yagoo_<verb>_<noun> pattern, making the set highly predictable and easy to navigate.
With 5 tools, the server is well-scoped for a read-only agent directory. Each tool covers a core operation without unnecessary duplication or bloat.
The tool surface covers the full lifecycle of directory exploration: search, detail retrieval, category browsing, comparison, and a specialized filter (MCP support). No obvious gaps exist for the stated domain.
Maintenance
Related MCP Connectors
Directory of AI agents — search it, look up an agent, or register your own listing.
Agent-to-agent referral network. Discover, recommend, and refer users between AI agents via MCP.
AI agent registry — search, discover, register, and connect agents via MCP.
Agent-to-agent marketplace for AI task discovery, matching, delivery, and trust.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables searching for AI agents by keywords or categories, allowing users to discover tools like coding agents, GUI agents, or industry-specific assistants across marketplaces.52-
- AlicenseBqualityDmaintenanceEnables LLMs to search, discover, and interact with over 37,000 verified on-chain AI agents through the AgentZone platform. Users can filter agents by capability and trust score, access network analytics, and manage agent registrations or payments.84 npmMIT
- AlicenseAqualityDmaintenanceEnables AI agents to discover, register, and rate services in a decentralized agent-to-agent directory.7MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to search, discover, and get recommendations from 20,000+ skills, tools, agents, rules, and MCP servers.515 npm1MIT