discovery
Server Details
Search independent software the big engines bury: indie apps, open-source repos, and dev tools.
- 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 3.6/5 across 3 of 3 tools scored.
Each tool has a distinct purpose: get_listing retrieves a single listing by ID, index_stats provides aggregate metrics, and search_indie performs queries. There is no overlap or ambiguity.
Two tools follow a verb_noun pattern (get_listing, search_indie), but index_stats is a noun_noun form, breaking consistency. The naming is still clear but not uniform.
Three tools is a small set, but appropriate for a focused discovery server. It covers search, detail retrieval, and stats without unnecessary bloat.
Core functionality is present (search, detail, stats), but missing features like listing browsing or filtering by tags limit full discovery workflows. Minor gaps exist.
Available Tools
3 toolsget_listingBInspect
Get full detail for one listing by id, including its outbound url, creator, tags, and popularity/recency signals.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral traits. It describes what is returned but does not disclose side effects (none expected), rate limits, authorization needs, or if operation is idempotent. For a read operation, a 'readOnly' hint would add clarity.
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 that is front-loaded with the core action. Every word adds value: verb, resource, identifier, and key return fields. No fluff or redundancy.
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 a single parameter, no output schema, and no annotations, the description is workable but not fully self-sufficient. It lists returned fields, but does not state that the tool is read-only, nor does it confirm it returns only one listing. Agent could guess, but explicit completeness would be beneficial.
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% (0 out of 1 parameter described). The description mentions 'by id' but does not specify the format, origin, or constraints of the 'id' parameter. The schema only defines type 'string' with no description. The description should explain what constitutes a valid id.
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 action ('Get full detail'), the resource ('listing'), the identifier ('by id'), and lists specific fields included (outbound url, creator, tags, popularity/recency signals). It distinguishes from siblings like index_stats and search_indie, which operate on collections or indices.
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 gives no guidance on when to use this tool versus alternatives (index_stats, search_indie). It does not specify prerequisites, context, or scenarios where this tool is preferred. The agent must infer usage from the purpose alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
index_statsBInspect
How much of the independent-software index is available: total listings, how many are fresh or small, and the top sources, languages and tags.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden for behavioral traits. It only describes return content but does not disclose whether the data is real-time, cached, requires authentication, or any side effects. For a simple read tool, this is minimal.
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?
Single sentence with no wasted words. The purpose is front-loaded and immediately understandable.
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 describes return values (total listings, counts, top items). However, it lacks details on data freshness, pagination, or format, and does not contrast with sibling tools.
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 zero parameters, so the description adds value by explaining what the tool returns. This meets the baseline for no 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 clearly states it returns summary statistics about the independent-software index, including total listings, fresh/small counts, and top sources/languages/tags. It distinguishes from siblings like get_listing (specific listing) and search_indie (search). However, it lacks an explicit verb like 'retrieve' or 'show'.
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?
No explicit guidance on when to use this tool versus get_listing or search_indie. The purpose is implied as obtaining summary stats, but there is no mention of when not to use it or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_indieAInspect
Search independent, small, and newly launched software that mainstream search engines bury. Each result has a buyUrl (the link to send the user to — it may be an affiliate link) and a clean url. Use small=true to see only low-authority (buried) results, fresh=true for recent launches.
| Name | Required | Description | Default |
|---|---|---|---|
| fresh | No | Only recently launched or updated listings. | |
| query | No | What the user wants, e.g. 'markdown editor', 'mcp server for notes', 'indie invoicing tool'. | |
| small | No | Only low-authority listings — the long tail Google buries. | |
| source | No | Filter to one source, e.g. 'npm' or 'github'. | |
| language | No | Filter by programming language, e.g. 'Rust'. |
Tool Definition Quality
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 buyUrl may be an affiliate link and clarifies the structure of results. It also explains the data source (indie software buried by mainstream engines), adding useful behavioral context.
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 sentences, front-loaded with purpose, followed by specific parameter guidance. Every sentence adds value; no fluff.
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?
Without an output schema, the description explains the key fields in results (buyUrl, url) and parameter usage. It is complete enough for an agent to understand the tool's purpose and expected response, though the exact response format (e.g., array) is implied rather than explicit.
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 100%, so baseline is 3. The description adds value by explaining the semantic meaning of small and fresh parameters beyond the schema, and provides example queries for the query parameter.
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 it searches for independent, small, and newly launched software, distinguishing from mainstream search engines. The purpose is specific and differentiates from sibling tools like get_listing (single listing) and index_stats (stats).
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?
Provides explicit guidance on using small=true for buried results and fresh=true for recent launches, helping the agent decide when to apply filters. However, it does not explicitly compare against siblings or 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.
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!