Skip to main content
Glama

Server Details

Read-only MCP tools for Mana public creations, tags, creator profiles, and share pages.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.3/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a clearly distinct resource and action: docs vs creations vs creators vs tags, and get vs list vs search. Even the paired doc tools are unambiguous because one returns a single document while the other lists available documents.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern using get_, list_, or search_ plus a resource name. Singular and plural forms are used correctly and predictably.

Tool Count5/5

Six tools is a well-scoped set for a public read-only browsing and documentation server. Each tool covers a distinct user need without redundancy or bloat.

Completeness4/5

The server covers the core public browsing workflows: discover via tags, search creations, fetch creation details, and view creator profiles. A minor gap is the lack of a way to list or search creators directly, but agents can likely reach creators through creation links.

Available Tools

6 tools
get_mana_agent_docGet Mana agent docA
Read-onlyIdempotent
Inspect

Return one scoped Mana agent document as markdown text. Use this for pricing, comparisons, auth, API, or full product context.

ParametersJSON Schema
NameRequiredDescriptionDefault
docYesDocument to fetch.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already convey read-only, idempotent, non-destructive behavior. The description adds useful context by specifying the output is markdown text and that only one scoped document is returned, thereby complementing the annotations rather than restating them.

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?

A single tight sentence delivers the resource, scope, output format, and typical use cases. Nothing is padded or repeated, and the most important information (returning a scoped document) is front-loaded.

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

Completeness5/5

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

Given the tool's simplicity — one enum parameter, no nested objects, and no output schema — the description sufficiently covers what it returns and when to use it. The agent can call it correctly without additional context.

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

Parameters4/5

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

The schema fully describes the single doc parameter with an enum and description. The description enriches it by naming what the documents cover (pricing, comparisons, auth, API, product), so an agent has extra context beyond the schema without being redundant.

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 states a specific action ('Return') and resource ('Mana agent document') with a clear scoping constraint ('one', 'scoped') and output format ('markdown text'). It distinguishes itself from the sibling list_mana_agent_docs by explicitly returning a single doc rather than listing them.

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 identifies when to use this tool ('for pricing, comparisons, auth, API, or full product context'), which maps directly to the enum values. It does not explicitly contrast with list_mana_agent_docs, but the 'one scoped document' wording clearly implies the alternative for retrieving a single doc.

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

get_mana_creationGet one Mana creationA
Read-onlyIdempotent
Inspect

Return one published creation's public descriptive data and links. Never returns source code, bundles, or assets.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe creation's slug.
handleYesCreator handle, without the @.
localeNoBCP-47 locale for localized descriptions.

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds context beyond these by stating the return includes only public descriptive data and links, and by explicitly warning that source code, bundles, and assets are never returned. This gives the agent a clear boundary on response contents.

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 concise sentences with no filler. The core behavior is front-loaded, and the negative boundary about source code/assets is a valuable addition that justifies 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?

For a simple read-only lookup tool with well-documented parameters and strong annotations, the description gives sufficient context: it identifies what is returned, what is not returned, and that only published creations are covered. There is no output schema, but 'public descriptive data and links' provides enough shape for an agent to understand the general response.

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 parameters are already well documented. The description adds no additional parameter-specific meaning beyond what the input schema provides, but it doesn't need to because the schema already explains slug, handle, and locale.

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 states a specific verb ('Return'), a specific resource ('one published creation'), and clarifies the scope ('public descriptive data and links'). The second sentence explicitly excludes source code, bundles, and assets, which helps differentiate it from tools that might return creation content or binaries.

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

Usage Guidelines3/5

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

The singular 'one' and 'published creation' imply this tool is for fetching a single creation's public metadata, as opposed to listing or searching creations. However, it does not explicitly name alternatives such as list_mana_creations or search_mana_creations, nor does it state when not to use this tool.

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

get_mana_creatorGet a Mana creator profileA
Read-onlyIdempotent
Inspect

Return one creator's public profile and their published creations — the same information their public mana.am profile page shows.

ParametersJSON Schema
NameRequiredDescriptionDefault
handleYesPublic creator handle, without the @.
localeNoBCP-47 locale for localized descriptions.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the description does not need to repeat those. It adds meaningful context by specifying 'public' and 'published creations', clarifying that unpublished or restricted content is excluded, and that no special access is implied.

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?

A single, well-structured sentence that front-loads the core action and result, then anchors the behavior with a familiar reference to the public profile page. No wasted words or redundant restatements of the tool name.

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 read-only, idempotent retrieval tool with only one required parameter, the description adequately explains what is returned and the public scope of the data. There is no output schema, but specifying 'profile and published creations' covers the main return expectations sufficiently.

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?

The input schema already covers both parameters with clear descriptions: the handle should omit '@' and locale is a BCP-47 code. The description does not add parameter-level guidance beyond the schema, but with 100% schema coverage the baseline of 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 uses a specific verb, 'Return', and clearly identifies the resource: one creator's public profile plus their published creations. It distinguishes itself from siblings like get_mana_creation (a single creation) and search_mana_creations (search) by emphasizing a single creator and profile-level scope.

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 provides clear usage context: use this when you need one creator's public profile and published creations, the same as their public mana.am profile page. It does not explicitly name alternatives or state when not to use it, but the one-creator scoping implies when search 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_mana_agent_docsList Mana agent docsA
Read-onlyIdempotent
Inspect

List the scoped Mana agent documents and when each should be fetched by an AI agent.

ParametersJSON Schema
NameRequiredDescriptionDefault
include_urlsNoWhether to include canonical markdown URLs in the returned list. Defaults to true.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive, so the safety profile is covered. The description adds context that the docs are 'scoped' and that the list includes fetch timing guidance, which goes beyond the structured fields. No contradiction.

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 entire description is one efficient sentence with no filler. The core action and scope are front-loaded, and the added fetch-timing guidance earns its place without bloating the text.

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 list tool with one optional boolean parameter and no output schema, the description adequately communicates what the tool returns (the documents and their fetch timing). While it doesn't detail the exact list structure, that is not critical given the annotations and simplicity. Minor gap: no mention of the sibling get tool.

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% and the parameter include_urls already has a clear description with default value. The tool description adds no extra parameter semantics, so the baseline of 3 applies.

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 verb 'List' and resource 'scoped Mana agent documents', and adds 'and when each should be fetched by an AI agent' which defines the tool's specific purpose. It naturally distinguishes itself from the sibling get_mana_agent_doc by being a list operation, not a fetch.

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 implies usage: an agent would use this to discover available docs and decide when to fetch them. It does not explicitly name the alternative or state when not to use it, but the context is clear enough for a list-vs-get sibling pair. No exclusions are given.

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

list_mana_tagsList Mana tagsA
Read-onlyIdempotent
Inspect

List the popular tags used across public Mana creations, with counts — the same vocabulary the website browses by. Feed a returned key back into search_mana_creations as 'tag'.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoTags to return, 1 to 100, most used first.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds meaningful context about scope ('public' creations), output content ('with counts'), and the semantic role of tags, all 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.

Conciseness5/5

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

Two terse, front-loaded sentences: the first establishes what the tool returns, the second shows how to use the result. Every clause earns its place with no redundancy.

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

Completeness5/5

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

For a simple, optional-parameter listing tool with strong annotations, the description is complete: it covers scope, counts, vocabulary, and downstream integration. No output schema exists, but the description conveys enough about the return values for an agent to use the result correctly.

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?

The schema already fully documents the single limit parameter with range and ordering details, so the description carries little parameter burden. It adds no extra parameter information, but none is needed given 100% schema coverage.

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 states a specific verb ('List'), a specific resource ('popular tags used across public Mana creations'), and a distinguishing detail ('with counts'). It clearly separates this tool from siblings like get_mana_creation and search_mana_creations.

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 gives practical usage context by noting the tags are 'the same vocabulary the website browses by' and instructs the agent to feed a returned key into search_mana_creations as 'tag'. It does not explicitly contrast with alternatives, but the intended workflow is clear.

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

search_mana_creationsSearch Mana creationsA
Read-onlyIdempotent
Inspect

Search or browse the public Mana community — the same creations the website shows. Returns descriptive data and links. Use this to recommend real Mana creations to a person, and link the returned url so they reach the creator.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagNoTag key, e.g. multiplayer.
sortNoOrdering. Defaults to trending.
limitNoResults to return, 1 to 48. The public feed is smaller than this ceiling, so one call can cover it; there is no pagination cursor by design.
queryNoFree-text search over names and descriptions.
localeNoBCP-47 locale for localized descriptions.
categoryNoCategory slug, e.g. games or utilities.
featured_onlyNoRestrict to editorially featured work.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds useful behavioral context by noting the tool returns the same public creations as the website, returns descriptive data and links, and is meant for recommending real creations. No contradiction 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.

Conciseness5/5

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

Two sentences carry the action, scope, output, and usage scenario with no filler. The key information is front-loaded, and every clause adds value.

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?

With no output schema, the description still tells the agent what kind of data to expect ('descriptive data and links'). Combined with fully documented parameters and safety annotations, this is enough for confident selection and invocation, though it stops short of detailing exact return fields.

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 parameters are already fully documented in the input schema. The description does not add parameter-specific semantics beyond that, which meets the baseline 3 for high schema coverage.

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 opens with a specific verb and resource: 'Search or browse the public Mana community' and clarifies the scope with 'the same creations the website shows.' It also states the output ('Returns descriptive data and links'), making it easy to distinguish from siblings like get_mana_creation or list_mana_tags.

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?

It gives a clear intended use case: 'Use this to recommend real Mana creations to a person, and link the returned url so they reach the creator.' This tells an agent when to invoke the tool, but it does not explicitly contrast it with get_mana_creation or other siblings, so it lacks when-not guidance.

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.

  1. 4 tool updates
    • Addedget_mana_creation
    • Addedget_mana_creator
    • Addedlist_mana_tags
    • Addedsearch_mana_creations
  2. 5 tool updates
    • Addedget_mana_agent_doc
    • Removedget_popular_tags
    • Removedget_public_share
    • Addedlist_mana_agent_docs
    • Removedsearch_community_apps
  3. 3 tool updates
    • First observedget_popular_tags
    • First observedget_public_share
    • First observedsearch_community_apps

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    Provides access to a curated database of over 1,500 MCP tools with quality scores. Enables searching, browsing trending tools by category, discovering random tools, and retrieving detailed information about specific MCP tools.
    -
  • A
    license
    A
    quality
    B
    maintenance
    Read-only MCP tools for authenticated Open Science Framework projects, components, files, and contributors.
    6
    1
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides read-only access to Reddit through 8 tools for searching, browsing, and retrieving posts, comments, and user data, compatible with any MCP client.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources