JustOneAPI MCP Server
OfficialSearch and retrieve posts from Bilibili, including keyword search, date filtering, and pagination.
Search and retrieve posts from Kuaishou, including keyword search, date filtering, and pagination.
Search and retrieve posts from WeChat, including keyword search, date filtering, and pagination.
Search and retrieve posts from Xiaohongshu, including keyword search, date filtering, and pagination.
Search and retrieve posts from Zhihu, including keyword search, date filtering, and pagination.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@JustOneAPI MCP ServerSearch for deepseek across all Chinese social media platforms"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
JustOneAPI MCP Server
简体中文 | English
Use JustOneAPI in MCP clients such as ChatGPT, Codex, Cursor, Hermes Agent, and other AI assistant tools.
JustOneAPI MCP helps your assistant find the right JustOneAPI endpoint, inspect the required parameters, and call APIs through your JustOneAPI authorization.
Supported Clients
JustOneAPI MCP supports remote Streamable HTTP and local stdio. Current verified and compatibility paths include:
ChatGPT web Developer mode MCP connections: OAuth, verified.
Codex CLI and the Codex IDE extension: OAuth, verified.
Cursor, Hermes Agent, and other clients with custom headers: existing API Token compatibility method.
Claude.ai, Claude Desktop, and Claude Code: OAuth remains under compatibility testing; Claude Code can use an existing API Token header.
Clients with a compatible OAuth registration flow can connect with only the remote URL and complete authorization in the browser. Compatibility also depends on client registration support and account or workspace policy. Clients without OAuth can keep using a legacy API Token header or local stdio.
Related MCP server: MCP from API
Quick Start
Remote HTTP with OAuth
OAuth is enabled on the production service. Add this URL as an MCP connection:
https://mcp.justoneapi.com/mcpCompatible clients discover the protected-resource metadata, redirect you to
auth.justoneapi.com, and ask for the MCP scopes shown on the consent page.
No JustOneAPI API Token needs to be pasted into the client. Entry points, OAuth
registration methods, and account restrictions vary by client, so the setup
below lists only verified OAuth paths.
Client setup
ChatGPT web: open
Settings → Security and login, enableDeveloper mode, openPlugins, and select+. Enter a name, description, and the/mcpURL above, then choose OAuth for Authentication. After creating the connection, ChatGPT discovers the authentication metadata and starts authorization during connection or when a protected tool is first invoked. Developer mode availability can depend on the ChatGPT account and workspace policy.Codex CLI / IDE extension: run the commands below. The currently recommended setup explicitly uses the verified DCR registration path:
codex mcp add justoneapi \
--url https://mcp.justoneapi.com/mcp
codex mcp login justoneapi \
--oauth-client-registration dcrThe ChatGPT desktop app, Codex CLI, and Codex IDE extension share MCP configuration on the same Codex host. See the official OpenAI MCP documentation and ChatGPT connection testing guide for current entry points.
OAuth for Claude.ai, Claude Desktop, and Claude Code remains under compatibility
testing and is not yet offered as a generally supported OAuth connection.
Claude Code can use an existing API Token with
--header "Authorization: Bearer your_token"; do not treat the generic JSON
below as a Claude Code configuration.
The authorization page shows the requested scopes. An account owner selects an existing API Token or creates a dedicated one; a Token Member can only use the Token assigned to that member. Disconnecting the app later revokes only its OAuth connection; it does not disable or delete the linked API Token.
Remote HTTP with an existing API Token
The existing header-based connection remains supported for compatibility:
{
"mcpServers": {
"justoneapi": {
"url": "https://mcp.justoneapi.com/mcp",
"headers": {
"Authorization": "Bearer your_token"
}
}
}
}Local stdio
As of 2026-08-25, npm latest is still the legacy 1.0.1 package, not the v2
implementation in this repository. If you require local stdio, pin the version
so the legacy CLI is not mistaken for the hosted v2 service:
{
"mcpServers": {
"justoneapi": {
"command": "npx",
"args": ["-y", "justoneapi-mcp@1.0.1"],
"env": {
"JUSTONEAPI_TOKEN": "your_token"
}
}
}
}Legacy 1.0.1 supports Node.js 18 or newer, and its tool layout is not the same as
the hosted v2 service. OAuth applies only to the remote Worker; stdio continues
to read JUSTONEAPI_TOKEN locally. Update this version guidance after v2 is
actually published to an npm dist-tag.
Catalog builds and dynamic releases use built-in public-safety validation and require no operator security registry or secret. Runtime API and account calls return the upstream payload without MCP-layer response truncation.
Authentication and scopes
OAuth users select the API Token to link on the authorization page and do not paste it into the client. The existing API Token remote compatibility method uses:
Authorization: Bearer your_tokenor, for local stdio:
JUSTONEAPI_TOKEN=your_tokenLocal stdio uses the environment variable above. Never commit a real Token to a repository.
OAuth access tokens use three least-privilege scopes:
mcp:catalog:read— search endpoints, inspect schemas, and list platforms.mcp:api:call— call a JustOneAPI endpoint.mcp:account:read— view balance and usage.
call_endpoint may incur charges under the API Token linked during OAuth and
its current pricing, permissions, balance, and budget. It validates the
endpoint and parameters before obtaining a short-lived delegation token, then
makes exactly one upstream dispatch. It does not automatically retry an
uncertain timeout, network failure, or HTTP 502/503/504 result.
Legacy API Tokens are still sent to the JustOneAPI backend in the established query/form format. OAuth access and delegation tokens are never put in backend URLs or form bodies; delegation tokens are sent only as an Authorization Bearer header.
Operator rollout
Production currently runs in dual mode. OAuth is additive and feature-flagged,
and these switches remain the deployment and rollback boundary:
JUSTONEAPI_OAUTH_MODE=offkeeps the remote service legacy-only and hides OAuth discovery metadata.JUSTONEAPI_OAUTH_MODE=dualaccepts both existing API Tokens and standard OAuth on the exacthttps://mcp.justoneapi.comorigin.Preview and
workers.devroutes remain legacy-only, even if the variable is set todual.
The Worker uses private_key_jwt for Authorization Server introspection and
RFC 8693 token exchange. Store the private JWK set and active kid as Worker
secrets; never commit .dev.vars, PEM files, or private JWK sets. Rotate keys by
publishing old and new public keys first, switching the active kid second, and
removing the retired key only after the overlap period.
npm 2.0 will first be published under the next dist-tag through OIDC trusted
publishing. After the exact published artifact passes the Node.js 20, 22, and
24 smoke checks, an operator promotes it separately with npm 2FA using
npm dist-tag add justoneapi-mcp@2.0.0 latest. This is never automated with an
NPM_TOKEN. See RELEASE.md.
Things You Can Ask
Ask your MCP client naturally:
Find the Xiaohongshu note comments API and tell me which parameters are required.More examples:
Which Douyin APIs can get video details?Call the Xiaohongshu note comments API with this note ID: xxxxx.List the Weibo search-related APIs and explain when to use each one.Continue to the next page of results.Check my JustOneAPI balance.Show my recent API usage and spending.The API returned code 400. Help me check which parameter might be wrong.The API returned code 601 or 602. What does it mean?The assistant can search available JustOneAPI endpoints, explain required parameters, call the selected API after you provide the needed values, and help interpret common response codes.
License
MIT
Available Tools
7 toolscall_endpointCall endpoint (may incur charges)ADestructive
Validate params and make one JustOneAPI endpoint call by endpoint_id. The call may incur charges under the bound API Token's current pricing and budget. Params should use snake_case names from get_endpoint_schema.
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | ||
| endpoint_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already signal readOnlyHint=false and destructiveHint=true, but the description adds meaningful behavioral context: the call may incur charges under the bound API Token's pricing and budget. It also clarifies that exactly one call is made, which is useful given openWorldHint=true. No contradiction with annotations exists.
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 compact and front-loaded: the main action is stated first, followed by the charge warning, then the parameter naming guideline. Every sentence earns its place with no filler or redundant restatement of the tool name.
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?
For a dynamic endpoint-calling tool, the description covers the essential operational concerns: validation, single-call behavior, charge risk, and parameter source. The output schema exists, so return-value details are not required here. The reference to get_endpoint_schema fills the main knowledge gap for constructing valid calls.
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 description coverage is 0%, so the description must compensate. It does so by explaining that params should use snake_case names from get_endpoint_schema, directly addressing the opaque 'params' object. This is essential guidance for an otherwise undocumented parameter structure.
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 uses a specific verb-resource pair: 'make one JustOneAPI endpoint call by endpoint_id.' It clearly distinguishes call_endpoint from the sibling tools (search_endpoints, get_endpoint_schema, get_account_balance, etc.) by stating the action is an actual endpoint invocation.
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 provides clear context for when to use this tool: when you need to execute an endpoint call. It also gives an important usage prerequisite: 'Params should use snake_case names from get_endpoint_schema,' which routes the agent to a sibling tool for parameter discovery. It does not explicitly list when-not-to-use scenarios, but the context is strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_account_balanceGet account balanceARead-onlyIdempotent
Get the current JustOneAPI token's available balance and currency. Use this when the user asks about account balance, remaining balance, or whether the token can continue calling APIs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool readOnly, idempotent, and non-destructive, so the safety profile is covered. The description adds the semantic detail that the balance indicates whether the token can continue calling APIs, which is useful context, but it does not disclose any additional behavioral traits such as freshness, rate limits, or response shape. This is adequate but not rich.
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?
Two sentences deliver the function first and usage triggers second, with no filler or repetition. Every clause earns its place; the description is short but information-dense.
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?
For a parameterless, read-only tool with an output schema and full annotation coverage, this description is complete. It names what is returned (balance and currency), explains when to invoke it, and addresses the likely ambiguity of 'balance' by linking it to continued API calling. Nothing essential is missing.
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 declares zero parameters, so there is no ambiguity to resolve. The schema description coverage is 100% by construction, and the description correctly avoids inventing parameters. Baseline of 4 is appropriate for a parameterless tool.
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 uses a specific verb ('Get') and identifies the exact resource: the current JustOneAPI token's available balance and currency. This clearly distinguishes it from siblings like call_endpoint or get_usage_summary, none of which target account balance. The stated use cases reinforce the tool's identity.
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 states explicit trigger conditions: when the user asks about account balance, remaining balance, or whether the token can continue calling APIs. This gives clear when-to-use context. However, it does not mention when not to use it or alternative tools, so it stops short of full routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_endpoint_schemaGet endpoint schemaARead-onlyIdempotent
Get the full schema and parameter contract for an endpoint_id returned by search_endpoints.
| Name | Required | Description | Default |
|---|---|---|---|
| endpoint_id | Yes | Endpoint id returned by search_endpoints. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds no behavioral details beyond retrieving schema, but nothing more is needed given the strong annotation coverage and presence of an output schema.
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, front-loaded sentence with no redundant words. It efficiently conveys the action, the resource, and the source of the required parameter.
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?
For a simple one-parameter, read-only lookup tool with a complete input schema, strong annotations, and an output schema, the description provides sufficient context. It also ties the parameter to its producer tool, making invocation straightforward.
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 description coverage is 100%, and the schema already documents endpoint_id as 'Endpoint id returned by search_endpoints.' The description essentially repeats this relationship without adding new parameter meaning, so the baseline of 3 applies.
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 verb 'Get' and the resource: the full schema and parameter contract for an endpoint_id. It also references the sibling tool search_endpoints as the source of the endpoint_id, distinguishing this lookup operation from call_endpoint and other siblings.
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 makes it clear the endpoint_id must come from search_endpoints, which implies the correct sequencing. It doesn't explicitly mention not to use call_endpoint for this purpose, but the context plus the tool name make the intended use unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_usage_summaryGet usage summaryARead-onlyIdempotent
Get the current JustOneAPI token's API usage and spending summary, including recent call trends and spending trends.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful scoping context by specifying 'current JustOneAPI token' and the included trend information, but it does not disclose details like the exact time window or any operational limits. This is acceptable given the annotations carry the main behavioral burden.
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, well-structured sentence that front-loads the core purpose and then adds the key included items. Every word contributes value, with no repetition of the tool name or title beyond what is natural.
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?
For a zero-parameter, read-only tool with an output schema and strong annotations, the description is largely complete. It states the resource scope and the content of the summary. The only minor gap is that 'recent' is not precisely defined, but the output schema likely clarifies the returned structure.
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 tool has zero parameters, so schema coverage is trivially 100% and there are no parameter semantics to document. Per the rubric, zero parameters receives a baseline of 4; the description appropriately focuses on what the returned summary contains rather than parameter details.
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 uses a specific verb and resource: getting the current JustOneAPI token's API usage and spending summary. It explicitly mentions included content (recent call trends and spending trends), which clearly differentiates it from siblings like get_account_balance, which is about balance rather than usage/spending summary.
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 implies this tool should be used when an agent needs usage and spending summary information for the current token. However, it does not explicitly contrast it with alternatives such as get_account_balance or state when not to use it, so the usage guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_platformsList platformsARead-onlyIdempotent
List supported JustOneAPI platforms and endpoint counts.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool as readOnly, idempotent, and non-destructive. The description adds useful context about what the response covers (supported platforms and endpoint counts). There is no hidden mutation or side-effect risk, and the description does not contradict the annotations.
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 focused sentence that states the action, the object, and the key output detail. Every word earns its place, and the core purpose is front-loaded.
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 that the tool has no parameters, is a safe read-only operation per annotations, and has an output schema available, the description is fully sufficient. An agent has everything needed to select and invoke this tool correctly.
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 tool has zero parameters, so the baseline is 4. The description does not need to explain parameter behavior because there are none to document.
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 uses a specific verb ('List') with a clear resource ('supported JustOneAPI platforms') and adds the distinctive result content ('endpoint counts'). This is clearly distinct from sibling tools like search_endpoints or get_endpoint_schema, which operate on endpoints rather than platforms.
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 makes the use case clear: an agent would call this when it needs the set of supported platforms and their endpoint counts. While it does not explicitly name alternatives or exclusions, the purpose is unambiguous and no sibling tool overlaps with this listing function.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
refresh_catalogRefresh catalogADestructive
Admin-only. Refresh the endpoint catalog from JustOneAPI OpenAPI documents.
| Name | Required | Description | Default |
|---|---|---|---|
| force | No | Reserved for compatibility; refresh still skips writes when unchanged. | |
| rollback | No | Roll back active catalog to the previous validated release. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already flag destructive behavior, and the description adds meaningful context by specifying admin-only access and the source of catalog data. It does not repeat or contradict the annotations, though it could mention that the active catalog is replaced.
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?
Two short front-loaded sentences place the most operationally important constraint (admin-only) first and add a useful source detail without filler. Everything else is left to the schema and annotations.
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?
With full parameter documentation, an output schema, and destructive annotation present, the description is nearly sufficient. It lacks explicit side-effect context about replacing the active catalog, but rollback behavior is captured in the parameter schema.
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 covers 100% of parameters with descriptions, including the force compatibility caveat and rollback semantics. The description itself adds no parameter detail, so the baseline of 3 is appropriate.
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?
States an explicit verb (Refresh), a clear resource (endpoint catalog), and a source (JustOneAPI OpenAPI documents). The admin-only scoping further distinguishes it from read/query siblings like search_endpoints and call_endpoint.
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 only usage guidance is the admin-only precondition; it does not state when to refresh or explicitly contrast with siblings such as 'use search_endpoints to query the catalog.' Usage is implied rather than fully specified.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_endpointsSearch endpointsARead-onlyIdempotent
Find JustOneAPI endpoint candidates from natural language. Returns endpoint_id candidates; call get_endpoint_schema next.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Natural-language endpoint search query. | |
| platform | No | Optional platform filter, e.g. douyin, xiaohongshu, 抖音. | |
| include_hidden | No | ||
| include_deprecated | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds useful behavioral context beyond annotations by clarifying that results are endpoint_id candidates only and that get_endpoint_schema should be called next, setting expectations about the return value and workflow.
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 two short sentences with no filler. The primary action is front-loaded, and the second sentence provides an actionable next step, making it easy to parse quickly.
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 the output schema, annotations, and schema-provided defaults, the description covers the main workflow adequately. It clearly states what the tool returns and what to do next, though it leaves some parameter semantics implicit.
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 description coverage is only 40%, so the description needs to compensate for undocumented parameters like limit, include_hidden, and include_deprecated. It does not mention any parameter behavior or filtering semantics, leaving meaningful gaps for the agent.
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 uses a specific verb ('Find') and resource ('JustOneAPI endpoint candidates') and clarifies that the query is natural language. It also states the output nature ('Returns endpoint_id candidates'), which distinguishes it from siblings like get_endpoint_schema and call_endpoint.
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 implies when to use the tool: when you need to discover endpoint candidates from natural language. However, it does not explicitly state when not to use it or how it compares to siblings, aside from pointing to get_endpoint_schema as the next step.
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. Dates show when Glama detected each change.
7 tool updates
v2.0.0- First observed
call_endpoint - First observed
get_account_balance - First observed
get_endpoint_schema - First observed
get_usage_summary - First observed
list_platforms - First observed
refresh_catalog - First observed
search_endpoints
TDQS
Each tool has a clearly distinct role: discovery, schema retrieval, invocation, account balance, usage analytics, platform listing, and catalog refresh. The two account-related tools are separated by balance vs. spending trends, and the sequential workflow tools explicitly reference each other.
All tool names follow a consistent verb_noun snake_case pattern: search_, get_, call_, list_, refresh_. There are no mixed naming conventions or vague verbs, making the set predictable and easy to navigate.
Seven tools is well-scoped for an API aggregation/catalog service. Each tool supports a necessary part of the workflow or administrative/maintenance need without redundant or filler tools.
The core workflow is fully covered: search for endpoints, retrieve their schema, call them, and check account balance/usage afterward. Platform listing and catalog refresh round out the surface with no obvious dead ends or missing lifecycle steps.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
All public upAPI operations as MCP tools: web scraping, search, screenshots, PDF, OCR and more.
One MCP endpoint over every Valksor dictionary: namespaced tools plus a JSON passthrough.
Unified gateway exposing 150+ tools across all NexGenData MCP servers via one endpoint.
Related MCP Servers
- FlicenseCqualityDmaintenanceEnables interaction with the OpenData Platform API by dynamically exposing all endpoints as MCP tools with typed input schemas and HTTP handlers.99-
- FlicenseNot gradedqualityDmaintenanceEnables users to expose arbitrary HTTP APIs as configurable MCP tools by defining tool specifications in a JSON configuration file.3,6073-
- AlicenseNot gradedqualityDmaintenanceProvides a standardized MCP interface for interacting with Shopify tools and services, enabling unified API access and compatibility with MCP-compliant clients.1MIT
- AlicenseNot gradedqualityDmaintenanceExposes the UniFi Network Integration API as MCP tools, dynamically loaded from JSON manifests, with read-only mode by default.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/justoneapi/justoneapi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server