Skip to main content
Glama

marketplace

Server Details

Search the JoJ API marketplace, read endpoint docs, and call any API with one key via one gateway.

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 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clear, non-overlapping purpose: one searches for APIs, two provide metadata (overview vs. endpoint docs), and one executes calls. The distinction between get_api and get_endpoint is well defined by scope (API-level vs endpoint-level).

Naming Consistency4/5

The naming follows a consistent verb_noun pattern (call_endpoint, get_api, get_endpoint, search_apis) with only minor deviation: 'search' instead of 'get' for the search tool, which is conventional. The pattern is clear and predictable.

Tool Count5/5

With only 4 tools, the set is tightly scoped to the marketplace's purpose: discovering, documenting, and executing APIs. Each tool is essential for the core workflow, and 4 is a reasonable number for this domain.

Completeness4/5

The surface covers the main lifecycle: search to find, get_api to understand, get_endpoint for details, call_endpoint to execute. Missing features like authentication management or plan/subscription management are external to the core usage, so this is a minor gap.

Available Tools

4 tools
call_endpointCall an endpointAInspect

Execute one endpoint of a marketplace API through the live gateway. Requires a JoJ API key configured on this MCP connection as an HTTP header (Authorization: Bearer jk_...). Usage is billed to the key's subscription exactly like any other API call.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe endpoint path exactly as listed by get_api.
slugYesThe API's marketplace slug.
methodYesHTTP method of the endpoint.
argumentsNoEndpoint arguments keyed by parameter name, as documented by get_endpoint (path/query/form/header parameters and, when documented, a `body` object).
Behavior3/5

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

With no annotations, the description carries the burden of disclosing side effectsasha. It mentions authentication and billing, giving some behavioral clarityverträglich. However, it does not state potential side effects of the API call (e.g., data modification), error handling, or rate limits. For an execution tool, this is partial transparency.

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 concise, consisting of two focused sentences that convey the action, authentication requirement, and billing implications. No redundancy or fluff.

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?

The description covers essential context: what the tool does (executes endpoint), required auth setup, and billing. It also implicitly instructs the agent to refer to get_api and get_endpoint for path and argument details. It does not mention output format or error behavior, but for an API execution tool this may be acceptable given the schema and sibling references.

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

Parameters5/5

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

The input schema provides thorough descriptions for all four parameters. The path references get_api, arguments references get_endpoint, and slug and method are clearly defined. This leverages sibling tools for complete documentation, ensuring the agent knows exactly how to supply each parameter.

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's function: 'Execute one endpoint of a marketplace API through the live gateway.' It specifies the verb (execute) and resource (endpoint of a marketplace API), and distinguishes it from sibling tools like get_api or search_apis by focusing on execution rather than listing or retrieving metadata.

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 context for when to use the tool (to execute an actual API call) and notes the prerequisite of a JoJ API key. It does not explicitly exclude cases or point to alternatives, but the mention of live gateway and billing implies these are production calls grants clear usage context. Could be improved with explicit statements like 'use get_endpoint to inspect parameters first'.

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

get_apiGet an API's overviewAInspect

Overview of one marketplace API by slug: what it does, its endpoint list, plans and links (docs, OpenAPI, dedicated MCP server).

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe API's marketplace slug, e.g. from search_apis.
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses the content of the overview (endpoint list, plans, links), but does not mention whether the operation is read-only or any other behavioral details. Overall, it provides moderate transparency but could be more explicit about side effects or resource access.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

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

The description is concise and front-loaded: it states the purpose and key contents in one sentence. It is efficient, with no wasted words. Could be slightly more structured, but it's well done.

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 tool with one parameter and no output schema, the description covers the essential information: what it returns (overview, endpoint list, plans, links). It doesn't mention return format or pagination, but given the simplicity tear, it's fairly complete.

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 coverage is 100% for the single parameter 'slug', and the schema description already explains it as 'The API's marketplace slug, e.g. from search_apis.' The tool description does not add additional meaning beyond that, so it meets the baseline of 3.

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 purpose: 'Overview of one marketplace API by slug' and specifies what the overview contains (what it does, endpoint list, plans, links). This distinguishes it from siblings like search_apis (for searching) and get_endpoint (for a specific endpoint).

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 by stating 'by slug' and gives an example ('e.g. from search_apis'), indicating a typical workflow where a slug is obtained from a search. It does not explicitly exclude alternatives or state when not to use it, but the context is clear enough for selection.

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

get_endpointGet full endpoint documentationAInspect

Complete documentation for one endpoint of a marketplace API: parameters with types and requirements, request body, documented responses with examples, and billing.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe endpoint path exactly as listed by get_api, e.g. /v1/search.
slugYesThe API's marketplace slug.
methodYesHTTP method, e.g. GET or POST.
Behavior3/5

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

With no annotations, the description must convey the tool's behavior. It explains what the returned documentation covers (parameters, request body, responses, billing), but does not explicitly state that it is read-only or mention potential side effects or authorization requirements. The 'documentation' wording strongly implies read-only, but the absence of explicit disclosure is a minor gap.

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, information-rich sentence that front-loads the tool's purpose and lists its key outputs without 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?

With no output schema, the description sufficiently outlines the return content (parameters, request body, responses, billing). It is complete for a low-complexity documentation tool and aligns with sibling tools like call_endpoint, though it does not mention error behavior or prerequisite actions.

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 provides 100% coverage of the three parameters with clear descriptions, so the description adds no extra parameter-level detail. This meets the baseline of 3 for well-covered schemas.

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 ('get') and resource ('endpoint documentation'), and clarifies that it covers one endpoint, distinguishing it from siblings like get_api (which likely lists endpoints) and call_endpoint (which invokes 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 phrase 'for one endpoint of a marketplace API' clearly implies use when full details about a specific endpoint are needed, which differentiates it from listing all APIs or searching. It does not explicitly state when not to use it, but the context is clear enough.

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

search_apisSearch the API catalogAInspect

Search the JoJ API marketplace (jojapi.com) — scraping, web search, social media and real-world data APIs, all callable with one API key through one gateway. Returns matching APIs with their slugs and links.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNopopular
limitNo
queryNoFree-text search over API names and descriptions. Omit or leave empty to browse the catalog.
Behavior3/5

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

There are no annotations, so the description must carry transparency. It states the tool returns matching APIs, implying a read-only operation, but it never explicitly says it does not modify data or have side effects. It also does not mention rate limits, errors, or pagination, leaving some behavioral aspects unspecified.

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 concise, consisting of two sentences that efficiently convey the tool's purpose and output. It avoids unnecessary details, making it easy to read and understand.

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?

The description, combined with the schema, gives a basic understanding of the tool but lacks explicit guidance on when to use it over sibling tools and does not elaborate on the meaning of sort and limit. It is adequate for a simple search function but not fully comprehensive for a user new to these tools.

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

Parameters2/5

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

Only the 'query' parameter has a schema description, leaving 'sort' and 'limit' without explanation. The tool description does not compensate for this low coverage; it provides no additional detail about how sort or limit affect results. Since schema description coverage is below 50% and the description adds no parameter-specific meaning, the score is low.

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 this tool searches the JoJ API marketplace, lists the types of APIs covered, and mentions it returns matching APIs with slugs and links. This distinguishes it from sibling tools like get_api or call_endpoint, which likely focus on retrieval or invocation.

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 discovering APIs but does not explicitly state when to use this tool instead of its siblings. It lacks direct guidance such as 'use this to find APIs before calling them' or comparisons to get_api/get_endpoint. The context is clear, but explicit contrast is missing.

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

  • A
    license
    A
    quality
    A
    maintenance
    The API layer for AI agents. World's biggest API index with 22,000+ APIs and growing. Agents discover and call APIs at runtime with semantic search, structured metadata, and 18 Direct Call APIs including AI providers.
    19
    302
    8
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Natural language API discovery MCP server. Search 700+ API capabilities across 163 current providers, get, exact endpoints, auth setup, and code snippets. Supports auto-discovery of new APIs.
    3
    1
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources