AITWIRE
Server Details
Business-published entity records with confirmation dates: look up, page feeds, check claims.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.2/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: entity_lookup finds an entity, entity_feeds retrieves its feeds, and grounding verifies a claim. No overlap.
Two tools follow verb_noun pattern (entity_feeds, entity_lookup) with 'aitwire_' prefix, but 'grounding' deviates by being a single noun and missing 'entity_' prefix, causing minor inconsistency.
Three tools are well-scoped for the server's purpose of entity lookup, feed retrieval, and claim verification. Each tool is essential and none feel extraneous.
The set covers the core workflows: find an entity, get its feeds, and verify claims against its record. No obvious gaps for the stated domain.
Available Tools
3 toolsaitwire_entity_feedsARead-onlyInspect
Page an entity's structured feeds on AITWIRE — products, services, articles, locations, or policies (tenant_id comes from aitwire_entity_lookup).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items (default 10) | |
| feed_type | Yes | ||
| tenant_id | Yes | AITWIRE tenant ID (from lookup) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations (readOnlyHint, destructiveHint) are already present. The description adds context about the feed types and the source of tenant_id, enhancing transparency beyond annotations.
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 a parenthetical, front-loading verb and resource. No wasted words; every element serves a 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 no output schema, the description adequately explains input and context. However, it does not mention return format or pagination details beyond 'page', leaving minor 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?
The description adds meaning by listing feed_type options and clarifying that tenant_id comes from aitwire_entity_lookup. Schema coverage is high (67%), and the description compensates for the remaining gaps.
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 ('page') and clearly identifies the resource ('entity's structured feeds'). It lists the feed types (products, services, etc.) and distinguishes from siblings by referencing aitwire_entity_lookup for tenant_id.
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 used to retrieve an entity's feeds after obtaining a tenant_id from aitwire_entity_lookup. It does not explicitly state when not to use or alternatives, but the dependency is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
aitwire_entity_lookupARead-onlyInspect
Look up a business, brand, organization, person, or website's business-supplied entity record on AITWIRE by domain or name — its confirmed description, feed URLs, and proof counts, each carrying the date it was confirmed. Returns no match for entities that have not published to AITWIRE.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Entity name (e.g. 'AITWIRE') | |
| domain | No | Domain (e.g. 'example.com') |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate the tool is read-only and non-destructive. The description adds behavioral context by detailing the returned data (confirmed description, feed URLs, proof counts with confirmation dates) and the constraint that only entities that have published to AITWIRE will return results. This goes beyond the annotations to provide useful behavioral expectations.
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, no redundancy, and directly states the core functionality and return information. It is front-loaded with the verb and resource, making it easy for an AI agent to parse quickly.
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?
Despite having no output schema, the description sufficiently explains what the tool returns (confirmed description, feed URLs, proof counts with dates) and a key behavior (no match for non-published entities). For a simple lookup tool with clear input parameters, this is nearly complete. One might argue that it could explicitly state that both parameters are optional and at least one must be provided, but the context signals indicate zero required parameters, so that detail is implicitly available.
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 has 100% coverage with clear descriptions for both parameters ('name' and 'domain'), so the schema already conveys their meaning. The description adds that either parameter can be used, but does not specify that at least one is required (though it's implied). Overall, the description adds minimal semantic value beyond the schema, placing it at the 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 clearly states the tool's purpose: looking up a business-supplied entity record by domain or name on AITWIRE. It specifies the types of entities (business, brand, organization, person, website) and the returned fields (confirmed description, feed URLs, proof counts with dates). This distinguishes it from sibling tools like aitwire_entity_feeds and aitwire_grounding, which handle related but different 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 provides clear context on when to use the tool: to retrieve an entity's record by providing a domain or name. It also states the outcome when no match is found (returns no match for entities not published to AITWIRE). However, it does not explicitly compare with sibling tools or provide when-not-to-use guidelines, so it is slightly less than perfect.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
aitwire_groundingARead-onlyInspect
Check whether a specific claim matches an entity's business-supplied record on AITWIRE. Returns verified / contradicted / unknown with a confidence score, so you can attribute the result.
| Name | Required | Description | Default |
|---|---|---|---|
| claim | Yes | Claim to verify | |
| entity | Yes | Entity domain or name |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark readOnlyHint=true; description adds that it returns verified/contradicted/unknown with confidence score. No contradictions with annotations.
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 focused sentences, no extraneous content. Verb and resource are front-loaded.
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 two-parameter read-only tool with no output schema, the description fully explains behavior and return value. No 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?
Schema covers both parameters with descriptions; the tool description restates their purpose but adds no new semantic detail beyond what is 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?
Clearly states the tool checks a claim against an entity's record on AITWIRE. Distinct from siblings (entity_feeds, entity_lookup) which handle different operations.
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?
Implies usage for verifying claims but provides no explicit guidance on when not to use it or alternatives. With siblings present, exclusion criteria would be helpful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!