Skip to main content
Glama

Server Details

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

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.

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: get_popular_tags lists tags, get_public_share fetches a specific profile or creation, and search_community_apps searches for apps. No overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (get_popular_tags, get_public_share, search_community_apps). Perfectly predictable.

Tool Count5/5

With 3 tools, the set is well-scoped for a read-only public API, covering browsing tags, fetching specific items, and searching. Each tool serves a necessary function.

Completeness4/5

Covers key read operations: listing tags, fetching by identifier, and search. Minor gap: no direct listing of all creators or creations by tag, but search can compensate.

Available Tools

3 tools
get_public_shareGet public shareA
Read-onlyIdempotent
Inspect

Product data tool: fetch either a Mana creator's public profile or one published Mana creation by handle and optional slug.

ParametersJSON Schema
NameRequiredDescriptionDefault
kindYesUse "creator" for a public creator profile, or "app" for one creation.
slugNoRequired when kind is "app": the published creation slug.
handleYesThe creator's handle, without the leading @.
localeNoOptional BCP-47 locale for localized creation display text.
Behavior3/5

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's 'fetch' is consistent with these and adds the 'public' and 'published' nuance, but doesn't offer deeper behavioral context like pagination or error handling. With annotations covering the safety profile, 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.

Conciseness5/5

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

Single sentence, front-loaded with 'Product data tool', then specifies the two fetch modes. Zero wasted words; every phrase 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?

For a read-only retrieval tool with two modes, the description combined with annotations and full schema coverage is adequate. It doesn't explicitly mention return value shape, but no output schema exists; still, the purpose and parameters are fully specified. Slight gap in not noting slug's requirement for 'app' mode, but schema handles that.

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%, with each parameter well-documented (e.g., 'kind' enum, 'slug' required condition, 'handle' without @, 'locale' BCP-47). The description adds no extra parameter semantics, so the baseline 3 is correct.

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 ('fetch') and resource ('Mana creator's public profile' or 'published Mana creation'), and clearly distinguishes two modes via 'either...or'. It is immediately distinguishable from sibling tools like get_popular_tags and search_community_apps.

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?

Provides clear context on when to use the tool (fetching a creator profile or one creation) but doesn't explicitly mention alternatives or when not to use it. The sibling tools are contextually different, but no direct comparison is made.

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

search_community_appsSearch community appsA
Read-onlyIdempotent
Inspect

Product data tool: search and browse the Mana community's published iPhone creations (games, tools, utilities created by users). Returns app titles, handles, creators, slugs, and pagination info.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagNoFilter by tag.
sortNoOrdering of results. Defaults to trending.
limitNoNumber of apps to return (1-48, default 24).
queryNoFree-text search across app titles and descriptions.
offsetNoPagination offset (default 0).
categoryNoFilter by category slug.
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false. The description adds valuable return information (app titles, handles, creators, slugs, pagination info) and labels it a 'Product data tool,' which reinforces the read-only nature without contradicting 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?

The description is a single, focused sentence plus a brief return-value sentence. It is front-loaded with purpose ('Product data tool') and contains no fluff or redundancy.

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 a well-covered schema and clear purpose, the description is sufficient for a search tool. It lacks pagination behavior details, but the schema documents offset and limit, so the overall context is complete enough.

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% for all 6 parameters, so the baseline is 3. The description does not add extra parameter details beyond what the schema already provides, but it doesn't need to since the schema is comprehensive.

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 specific verbs 'search and browse' and a specific resource ('Mana community's published iPhone creations'), clearly distinguishing it from siblings like get_popular_tags and get_public_share. It also states what it returns, making the purpose unmistakable.

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 context for when to use this tool (searching/browsing community apps) without mentioning exclusions. It doesn't explicitly name alternative tools, but the context is unambiguous given the sibling tool names and the 'Product data tool' label.

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

  • F
    license
    -
    quality
    -
    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.
    Last updated
  • A
    license
    -
    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.
    Last updated
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Provides read-only access to iFixit repair guides, device information, repairability scores, categories, search, media, and contributor profiles via MCP tools.
    Last updated
    BSD Zero Clause

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources