Skip to main content
Glama

sftunes

Server Details

Hand-made human mixtapes with liner notes. Paid tools $0.01 USDC via x402, 80% to the tapemaker.

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 3.9/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: about_sftunes provides metadata about the service itself, while get_tape and list_tapes serve different retrieval needs (single item vs. index). No overlap.

Naming Consistency4/5

Most tools follow verb_noun pattern (get_tape, list_tapes), but about_sftunes uses a different 'about_' prefix. Still consistently uses snake_case and readable names.

Tool Count3/5

With only 3 tools, the server feels minimal but covers basic discovery and retrieval of mixtapes. For a focused service, the count is borderline acceptable.

Completeness3/5

The server provides listing and detail retrieval but lacks search, filter, or sort capabilities, which are notable gaps for a mixtape index. No create/update/delete operations, but that may be intentional for a read-only public index.

Available Tools

3 tools
about_sftunesBInspect

What SFtunes is, how x402 payment works, and the tapemaker revenue split. Free.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

With no annotations, the description partially discloses behavior by stating it explains topics and is 'Free'. It implies no destructive actions, but it does not mention if the tool is idempotent, requires authentication, or returns static content. Adequate but minimal for a read-only info tool.

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, front-loaded sentence that efficiently lists the covered topics. Every word adds value; no wasted space.

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

Completeness3/5

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

While the tool has no parameters and no output schema, the description does not explain what the tool returns (e.g., formatted text, simple string). For a simple information tool, the description is adequate but incomplete regarding output format.

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 input schema has zero parameters, and schema description coverage is trivially 100%. The description adds no parameter information because there are none. Baseline of 4 is appropriate.

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

Purpose4/5

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

The description clearly states the tool provides information about SFtunes, x402 payment, and revenue split. It distinguishes from siblings (get_tape, list_tapes) which focus on tape details. However, it lacks an explicit verb like 'Retrieve' or 'Get info', reducing clarity slightly.

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

Usage Guidelines2/5

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

No guidance on when to use this tool or when to prefer alternatives. The context of sibling tools suggests it is for general information, but the description does not explicitly state this or provide any usage criteria.

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

get_tapeAInspect

One public SFtunes mixtape by tape_id (uuid): title, description, tapemaker, ordered tracks with artist/title/liner note and canonical Spotify/Apple/YouTube links. Costs $0.01 USDC per call via x402; 80% goes to the tapemaker.

ParametersJSON Schema
NameRequiredDescriptionDefault
tape_idYes
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that the call costs $0.01 USDC via x402 and 80% goes to the creator, and notes that the mixtape is public. It does not mention idempotency or error behavior, but for a retrieval tool this is sufficient.

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, efficient sentence that immediately states the tool's purpose and key details, followed by a brief cost note. 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 simple retrieval tool with one parameter and no output schema, the description explains what is returned and the cost model. It could mention possible errors (e.g., invalid ID) but is otherwise complete.

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 provides no description for tape_id (0% coverage), but the description clarifies it is a UUID and that it identifies the mixtape. This adds meaning beyond the raw schema, although it could specify format more precisely.

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 that the tool retrieves a single public SFtunes mixtape by its tape_id (uuid), and it lists the specific return fields (title, description, tapemaker, tracks with details). This distinguishes it from siblings: list_tapes (for listing multiple) and about_sftunes (likely general info).

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 description implies usage for fetching a specific mixtape by ID, but does not explicitly state when to use this over siblings like list_tapes (for browsing) or about_sftunes (for service info). No exclusion criteria or alternatives are mentioned.

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

list_tapesAInspect

Index of all public SFtunes mixtapes: id, title, tapemaker handle, track_count. Costs $0.01 USDC per call via x402.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

The description discloses the cost ($0.01 USDC per call via x402) which is valuable behavioral information for an agent. However, with no annotations, it does not explicitly state that the operation is read-only or describe potential side effects, though the indexing nature suggests no side effects.

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, front-loaded with purpose. Every word adds value, with no unnecessary fluff. Highly efficient.

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 list tool with no parameters and no output schema, the description adequately specifies the output fields and cost. It could mention pagination or ordering but is sufficient for an agent to understand the tool's function.

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?

There are no parameters (schema coverage 100%), so the description adds value by specifying the output structure (id, title, tapemaker handle, track_count) and cost, which the empty schema does not convey.

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 returns an index of all public SFtunes mixtapes with specific fields (id, title, tapemaker handle, track_count). It uses specific verb 'index' and resource 'public SFtunes mixtapes', distinguishing it from siblings like get_tape (single tape) and about_sftunes (general info).

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 description implies usage for listing all public tapes but does not explicitly state when to use it versus alternatives. No when-not or specific conditions are mentioned, and sibling tools are not referenced.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources