Skip to main content
Glama

directory

Server Details

Discover and query every business on ANOTS — search, ask, or find-and-ask over MCP.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Patheras/the-anots
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: search_businesses discovers agents, ask_business queries a specific one by slug, and find_and_ask combines both in one step. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a verb_noun pattern with snake_case: search_businesses, ask_business, find_and_ask. The naming is consistent and predictable.

Tool Count4/5

Three tools is minimal but well-scoped for a directory server focused on agent discovery and interaction. It covers the essential workflow without unnecessary extras.

Completeness4/5

The tool set covers the core user-facing functionality: search, ask specific, and combined ask. It lacks listing all agents or administrative tools, but for a client-facing directory it is complete enough.

Available Tools

3 tools
ask_businessAInspect

Ask a specific business's ANOTS agent a question, by slug. The agent answers from that business's own knowledge base and tools (live data, not scraped HTML). Get the slug from search_businesses.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe business slug (e.g. "gyibb")
questionYesThe question to ask that business agent
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so the description must cover behavioral traits. It reveals that answers come from the business's own knowledge base and tools, using live data (not scraped HTML). However, it does not mention authentication, rate limits, or error handling (e.g., if slug is invalid).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the action. Every sentence contributes meaningful information: what the tool does, how answers are generated, and where to get the slug. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 2 parameters and no output schema, the description explains the source of answers and their live nature. It lacks details on return format or possible errors, but given the simplicity and the presence of a sibling for slug retrieval, it is fairly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

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 minimal extra meaning beyond the schema: it hints that slug comes from 'search_businesses' and that the question is to be asked. No further enriching details are provided.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (ask a question) and the resource (a specific business's ANOTS agent, identified by slug). It distinguishes itself from siblings: 'search_businesses' is for getting slugs, and 'find_and_ask' likely involves searching; this tool is for a specific known business.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells users to get the slug from 'search_businesses', providing a clear prerequisite. While it doesn't explicitly state when not to use this tool versus alternatives, the context of asking a specific business agent is clear and distinct from siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

find_and_askAInspect

Discover the most relevant ANOTS businesses for a need AND ask each one in a single step, returning their answers side by side. The fastest way to answer a purchase-intent or research question across the directory.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many businesses to ask (default 3, max 5)
queryYesThe need or question to route across the directory
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully carries the burden of behavioral disclosure. It explains the tool discovers and asks businesses, returning answers, but lacks details on side effects (e.g., does it send real messages?), authentication needs, or rate limits. The behavior is generally clear but not exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, directly stating the action and the benefit. It is front-loaded with the key functionality and contains no redundant words. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and two simple parameters, the description adequately explains the tool's purpose and outcome (answers side by side). It could be improved by specifying the return format or handling of edge cases (e.g., no results), but it is sufficient for typical use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Both parameters have descriptions in the schema (100% coverage). The description adds context for how they are used (discover and ask in one step) but does not provide details beyond the schema, such as input format constraints or example values. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies the tool discovers relevant ANOTS businesses and asks each one in a single step, returning answers side by side. This clearly distinguishes it from siblings: 'search_businesses' (only find) and 'ask_business' (only ask a single business). The verb-resource combination is precise and the 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.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description states it is 'the fastest way to answer a purchase-intent or research question across the directory,' providing a clear context for when to use it. However, it does not explicitly state when not to use it or mention alternatives, though the sibling tools provide implicit guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_businessesAInspect

Search the ANOTS directory for businesses whose AI agent can answer a question or need. Returns matching businesses with their slug, name, what they do, and agent-card URL. Use this first to discover which agents to ask.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax businesses to return (default 5, max 10)
queryYesWhat you are looking for (e.g. "honest product reviews", "coffee subscription that ships internationally")
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must convey behavioral traits. It correctly indicates the tool performs a search and returns a list, but does not disclose potential side effects, authentication needs, or rate limits. It implies read-only behavior but doesn't guarantee safety.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, wastes no words, and front-loads the core purpose. It is concise and scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description adequately lists return fields. Params are fully covered. It lacks error handling or pagination details, but for a simple search tool this is sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description does not add significant extra meaning beyond the schema's parameter descriptions. It repeats the query purpose but does not elaborate on formatting or edge cases.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches a directory for businesses whose AI agents can answer questions, and specifies return fields (slug, name, what they do, agent-card URL). This effectively differentiates from sibling tools like 'ask_business' which would query an individual agent.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly advises to use this tool first to discover agents before asking them, providing clear usage context. However, it doesn't explicitly state when not to use it or contrast with alternatives like 'find_and_ask'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Provides AI agents with access to real, verifiable businesses with provenance and source URLs, enabling natural-language business search and profile retrieval.
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables MCP clients to search and retrieve structured business data from the Vexi API, allowing AI agents to get clean, typed business objects with identity, offerings, and trust signals.
    4
    14
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Country-agnostic MCP-callable directory for AI agents to find local SMBs — realtors, insurance agents, medical practitioners — by category, location, or natural-language query. Returns business catalog data and UTM-tagged booking URLs (zero PII).
    5
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.