heropedia
Server Details
Consult 324+ expert personas (Buffett, Jobs, Munger, Torvalds, ...) via 4 read-only registry tools.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- SiliconRoshiBill/heropedia-plugin
- GitHub Stars
- 0
TDQS
Each tool has a clear, distinct purpose: getDetail retrieves full content, getList returns paginated metadata, and getListByHero/getListByRole filter by specific dimensions. The descriptions reinforce the boundaries, so an agent can reliably select the right tool.
All tool names follow the predictable get + List/Detail + optional ByHero/ByRole pattern. This consistent verb-noun structure makes the toolset easy to understand and anticipate.
With 4 tools, the server is tightly scoped for a read-only reference system. Each tool covers a distinct retrieval need without unnecessary bloat or redundancy.
For a Heropedia reference server, the surface is complete: full detail retrieval, unfiltered listing, hero-based filtering, and role-based filtering. The only apparent missing operation would be write/update actions, which are outside the read-only purpose inferred from the tool descriptions.
Available Tools
4 toolsgetDetailARead-onlyIdempotentInspect
Retrieve the complete canonical Heropedia Role content as raw markdown. Fetch either by unique entry id (preferred after LIST) or by exact hero_name + role_name (when both names are already known). Not a regex tool.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| hero_name | No | ||
| role_name | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only and idempotent behavior, so the description only needs to add context. It adds that content is canonical, returned as raw markdown, that lookup requires exact names, and that regex/fuzzy matching is not supported.
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?
Three short, front-loaded sentences with no filler. The action and resource lead, lookup modes follow, and the exclusion is stated at the end.
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 read tool with a non-trivial oneOf schema and no output schema, the description explains both valid lookup modes and the output format. It does not discuss not-found behavior, but that is a minor gap given the read-only, idempotent annotations.
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 0%, so the description must carry the parameter semantics. It explains id as a unique entry id preferred after LIST and explains hero_name + role_name as an exact-name alternative, which adds meaningful use-case meaning beyond the raw oneOf 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?
States a specific verb (Retrieve), a specific resource (complete canonical Heropedia Role content), and the exact output form (raw markdown). It also distinguishes itself from listing tools by specifying lookup by unique id or exact hero_name + role_name and by noting it is not a regex tool.
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?
Gives clear context: use id after LIST, use exact hero_name + role_name when both names are known. It does not explicitly name the alternative tools, but 'after LIST' and the sibling names make the when-to-use distinction clear; 'Not a regex tool' rules out fuzzy use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getListARead-onlyIdempotentInspect
List Heropedia Hero/Role entries using pagination. Returns lightweight metadata: id, hero_name, role_name, description. Does not return full Role prompts.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| page_size | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover safety (readOnlyHint=true, idempotentHint=true, destructiveHint=false), so the description adds value by disclosing pagination behavior, the exact returned fields, and the explicit exclusion of full Role prompts. This is especially useful given the absence of an output schema.
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 action and resource, then provides return details and a key exclusion. Every sentence earns its place with no redundant wording.
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, paginated listing tool with safety annotations, the description covers the return fields and a notable exclusion. It does not specify the exact response envelope (e.g., array of objects), but the given metadata list and schema constraints make the tool adequately invocable.
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 0%, so the description bears the burden, but it only says 'using pagination' without explaining page/page_size meaning. The parameter names, types, defaults, and ranges in the schema make the intent reasonably clear, but the description does not add meaningful extra 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 states a specific verb ('List') and resource ('Heropedia Hero/Role entries'), and clarifies that it returns lightweight metadata, distinguishing it from detail or filtered-list siblings like getDetail, getListByHero, and getListByRole.
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 general paginated listing use case and mentions that full Role prompts are not returned, but it does not explicitly name alternatives or state when to prefer getDetail or getListByHero/getListByRole. Usage context is present but routing is left to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getListByHeroARead-onlyIdempotentInspect
List Heropedia Hero/Role entries whose Hero name matches the supplied regex. Use when you know or can identify the Hero and want to inspect that Hero's available Roles. Regex is case-insensitive; safe subset only. Returns lightweight metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| page_size | No | ||
| hero_regex | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds non-redundant behavioral context: regex is case-insensitive, only a 'safe subset' of regex is supported, and the response is 'lightweight metadata.' This goes beyond the structured annotations and helps set expectations about matching behavior and return payload.
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 four sentences with zero wasted words. The primary purpose is front-loaded, followed by the usage condition and key behavioral nuances. Every sentence contributes meaningful information, and the structure is easy to scan.
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 list tool with safe annotations, the description covers purpose, usage context, regex behavior, and return weight. It does not detail pagination semantics or what 'lightweight metadata' contains, but the schema defaults and the tool's simple nature make this a minor gap. Overall, an agent has enough to select and correctly invoke the 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 0%, so the description carries the burden of explaining parameters. It clarifies the hero_regex parameter by noting it is a regex, case-insensitive, and restricted to a safe subset. However, the optional page and page_size parameters are not explained in the description, leaving their semantics to inference from names and schema constraints. The main parameter is covered, but not all 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 states a specific verb ('List') and resource ('Heropedia Hero/Role entries'), and narrows the scope by the matching criterion ('Hero name matches the supplied regex'). It also distinguishes this from siblings by emphasizing hero-based lookup versus role-based lookup, so an agent can tell it apart from getListByRole.
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 says 'Use when you know or can identify the Hero and want to inspect that Hero's available Roles,' giving a clear condition for when this tool is appropriate. It does not explicitly name alternatives or say when not to use it, but the sibling context and the clear when-to-use clause provide sufficient guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getListByRoleARead-onlyIdempotentInspect
List Heropedia Hero/Role entries whose Role name matches the supplied regex. Use when you want to inspect Heroes offering a particular Role. Regex is case-insensitive; safe subset only. Returns lightweight metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| page_size | No | ||
| role_regex | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already establish read-only, idempotent, non-destructive behavior. The description adds useful context beyond that: case-insensitive regex, a restricted 'safe subset', and lightweight metadata returns. This adds behavioral detail without contradicting the 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?
Three short sentences carry distinct information: purpose, usage trigger, and behavioral caveats. There is slight redundancy between 'List ... matches the supplied regex' and 'inspect Heroes offering a particular Role', preventing a perfect score.
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 read-only list tool with annotations covering safety, the description gives filtering semantics, regex behavior, and return nature ('lightweight metadata'). Missing explicit pagination guidance and sibling routing are minor given the schema defaults and simple tool shape.
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 0%, so the description must compensate. It explains role_regex semantics well ('matches', case-insensitive, safe subset), but says nothing about page or page_size; those rely on their self-evident names and schema defaults/min/max. This is adequate but incomplete.
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 action and resource: 'List Heropedia Hero/Role entries whose Role name matches the supplied regex.' The role-focused filter makes it semantically distinct from the sibling getListByHero, but it does not explicitly name alternatives, so it falls short of full 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?
'Use when you want to inspect Heroes offering a particular Role' provides a clear and explicit trigger for using this tool. It does not state when-not-to-use conditions or point to alternatives, which keeps this at a 4 rather than a 5.
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.
4 tool updates
- First observed
getDetail - First observed
getList - First observed
getListByHero - First observed
getListByRole
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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!
Related MCP Connectors
Read-only Pattern-Assist corpus for aspiring software engineers: grounded dev patterns with sources.
41Read-only tools over the Safer Agentic AI framework: 238 patterns + 14 heuristics.
AI Agent Source Registry. 288K+ curated sources for agentic search and discovery.
Read-only approved AI tools, public stacks, guides, and evidence-aware comparisons.
Related MCP Servers
- AlicenseAqualityCmaintenanceYour personal council of tech titans, investing legends, and crypto builders. 36 personas. Zero API keys. One npx command.8727MIT
- AlicenseNot gradedqualityBmaintenanceInteraction profile registry for AI agents. Log interactions to build a behavioral profile, query it through lenses: friction, coverage, stable corridors, failure registry, and trend. 21 tools.221MIT
- AlicenseNot gradedqualityAmaintenanceA personal board of AI advisors grounded in public-domain texts, with a fail-closed fidelity contour: every quote is checked word-for-word against its source by code, or the advisor abstains. Runs locally as a stdio MCP server.7MIT
- AlicenseAqualityAmaintenanceInvestment decision tools for AI agents: portfolio status, isolated multi-agent committee analysis, auditable verdict history, and lookahead-protected backtests. Advisory only, no auto-trading; negative research results published.2183MIT