Skip to main content
Glama

Server Details

Bybit crypto exchange, unified account and Funding wallet balances, open derivatives positions, orde

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/bybit-mcp
GitHub Stars
0

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

Server CoherenceB
Disambiguation2/5

The boundaries between marketplace and search_tools are unclear—both serve as catalog entrypoints with search/describe/invoke actions, causing likely misselection. Additionally, connect and toolkit_info overlap in reporting connection status, while marketplace bundles unrelated features like the prompt library.

Naming Consistency3/5

All names use lowercase snake_case, but the pattern is mixes bare verbs (authenticate, connect), nouns (marketplace, toolkit_info), and verb_noun compounds (report_bug, search_tools, show_version). This mixed style is still readable but not predictable.

Tool Count4/5

Seven tools is within the ideal scope for a lifecycle-focused server. However, marketplace is overloaded with many sub-actions while other tools (show_version, report_bug) are trivial, making the count feel less balanced than optimal.

Completeness3/5

Core platform operations like auth, connection, catalog search, invocation, and bug reporting are present, but the surface is muddled by duplicate catalog access and a single swiss-army marketplace tool. There are no major missing capabilities, but the design convolutes what should be cleaner CRUD-like operations.

Available Tools

7 tools
authenticateA
Idempotent
Inspect

MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior4/5

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

The description adds significant behavioral context beyond the annotations: it explains that the token is 'non-expiring' when added to the config, that the session-only login is temporary, and the exact flow of what happens (browser login -> get token -> paste). With annotations declaring idempotentHint=true and no destructive hint, the description's accuracy aligns with these annotations. The only minor gap is not mentioning what happens if the tool is called again after authentication (e.g., does it overwrite the token?).

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 (three sentences) and front-loaded with the primary use case. It packs a lot of information into a small space: the target audience, the login flow, the two authentication methods, and the exact syntax for calling the tool. It could be slightly more structured (e.g., using bullet points), but the prose is clear and every sentence 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?

Given that this is a low-complexity tool (1 optional parameter, no required params, no output schema), the description is complete. It explains the two main call patterns and what the user should expect (a link or a login prompt). It could have mentioned error cases (e.g., invalid token, expired session) but for the tool's simplicity, it covers the essential context well. The annotation idempotentHint is sensible since calling this tool multiple times should be fine.

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 is minimal (one optional string parameter 'token' with zero additional description), so the description carries the burden of explaining the parameter. The description explicitly mentions the token parameter and how to use it: "call with { token: \"<jwt>\" } after the user pastes, or with no args to get the link." This adds essential semantics about what string is expected (JWT) and the conditional behavior (with/without args). The only loss is that the description doesn't specify the format or constraints of the token beyond being a JWT, but this is adequately compensating for the 0% schema coverage.

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's purpose: authenticating an MCP server for IDE agents by logging in via browser and obtaining a token. It specifies the primary use case (authenticating for Cursor, etc.) and explains the two ways to authenticate (permanent via config header, or session-only via token parameter). It distinguishes itself from sibling tools like 'connect' and 'search_tools' by its focus on the authentication flow.

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 usage context: it explains when to use this tool (to set up authentication for the server) and how to use it (browser login, then either add a config header or pass the token). It mentions alternatives implicitly by distinguishing between session-only and permanent login methods. However, it could have been more explicit about when NOT to use this tool versus the sibling 'connect' tool.

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

connectA
Read-onlyIdempotent
Inspect

Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already establish that this is a safe, read-only, idempotent operation. The description adds useful behavioral detail beyond that, such as the shape of the returned data (authenticated flag, empty pending[], connect_url, per-install URLs). No contradiction with 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 two concise sentences, both of which earn their place. It front-loads the primary purpose and then explains the meaningful output states without redundancy.

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

Completeness5/5

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

For a zero-parameter, read-only status tool with no output schema, the description provides complete guidance on both normal and missing-credential outcomes. It is sufficiently complete for an agent to understand what the tool will return.

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 tool takes zero parameters and the schema has full coverage, so there is no parameter burden for the description. The description correctly focuses on return values rather than inputs.

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 identifies the tool's purpose with a specific verb and resource: it returns connection status and URLs. It also distinguishes itself from the sibling authenticate tool by detailing the result states rather than describing an authentication action.

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 when to use the tool by explaining the two relevant states: when all providers are connected and when credentials are missing. It does not explicitly name alternatives or exclusions, but the context makes the usage scenario clear.

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

marketplaceAInspect

The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior5/5

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

The description discloses key behaviors beyond annotations: invoke works without installation, runs one-off, returns connect links for credentials and checkout links for payment, and requires owner/admin for writes. This adds significant context that annotations (which only mark non-read-only, non-destructive) do not cover. No contradictions found.

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 unusually long but well-structured: it opens with the core identity, then explains the primary flow, highlights key behaviors (one-off invoke, auth/payment), gives permission context, and concludes with the prompt library. Every sentence contributes necessary information given the tool's complexity, though it is dense and could benefit from formatting (e.g., bullets, spacing) for easier parsing.

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

Completeness5/5

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

Given the tool's massive scope (14 actions, 23 parameters, no output schema), the description is remarkably complete. It covers the end-to-end workflow, edge cases (credential/payment flows), permission requirements, and the auxiliary prompt-library feature. It even highlights installed status flags. It does not detail return formats, but the lack of an output schema and the breadth of actions make the description arguably sufficient for an agent to use the tool effectively.

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?

With 23 parameters and 0% schema coverage, the description partially compensates by explaining the core 'action' parameter and its enumerated values, plus implicit meanings of query, mcp_id, tool_id, arguments, and prompt-related fields. However, it does not explicitly document many parameters (limit, immediate, tier_slug, cancel_reason, etc.) or provide formats for complex ones like 'arguments' and 'conversation'. It adds value but leaves significant gaps given the schema's lack of descriptions.

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 this is 'the official mcp.ai marketplace' and covers capability requests, with a core flow of search→describe→invoke. It explicitly distinguishes itself from siblings like search_tools and report_bug by defining its unique role as the central catalog and execution engine. The purpose is specific and well-scoped despite the tool's breadth.

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

Usage Guidelines5/5

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

Provides explicit when-to-use and when-not-to-use guidance: 'prefer invoke for a single/occasional use' vs 'use install only to make an MCP PERMANENT'; describes the intended flow for search/describe/invoke; and covers when to use each action (list_tools, subscribe/cancel, report_bug, request_mcp, prompt actions). It also explains what triggers connect/checkout links and permission requirements for writes.

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

report_bugA
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior3/5

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

Annotations already cover idempotency, read-only, and destructive hints. The description adds the instruction to include the conversation array for reproduction, which is helpful context. It does not contradict 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 brief and front-loaded with the purpose, followed by a key usage note. It avoids unnecessary detail.

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 tool is simple, and the description covers its purpose and an important usage detail. However, it lacks information about the required message parameter or expected return behavior, though annotations provide some safety context.

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?

Schema description coverage is 0%, so the description must compensate. It mentions the conversation array for reproduction but does not explain the required 'message' parameter or the optional 'context' parameter, leaving the agent without full parameter semantics.

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 identifies the tool's function: 'Report a bug, missing feature, or send feedback.' It uses a specific verb and resource, and is distinct from sibling tools like search_tools or authenticate.

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?

It states clear use cases (bug, missing feature, feedback) but does not explicitly mention alternatives or when not to use it. The sibling tools are sufficiently different, so context is clear.

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

search_toolsAInspect

Single entrypoint for MCP catalog. action=search returns available tools ordered by relevance. action=describe returns tool schema. action=invoke executes a tool by ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNo
actionNosearch
queriesNo
tool_idNo
argumentsNo{}
min_scoreNo
force_reindexNo
Behavior4/5

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

The description explicitly discloses the main behavioral actions: returning relevance-ordered tools, returning tool schemas, and executing tools by ID. This goes beyond the all-false annotations and is especially useful because 'invoke' implies execution side effects, though it does not discuss risk, auth requirements, or heavier operations.

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 one concise, front-loaded sentence with no filler. Each phrase adds a distinct action behavior, making it an efficient and useful summary.

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?

For a multi-action tool with seven parameters, no output schema, and unhelpful annotations, the description offers a useful high-level summary but not enough to execute it reliably. Missing pieces include `arguments` format, `min_score` behavior, `force_reindex` side effects, and the meaning of `query` vs `queries`.

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?

With description coverage at 0%, the description needs to compensate heavily, but it does only explain `action` and partially `tool_id`. Parameters like `query`, `queries`, `arguments`, `min_score`, and `force_reindex` are left unexplained, leaving many execution semantics opaque.

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?

Identifies itself as the 'single entrypoint' for the MCP catalog and clearly describes three concrete actions: search by relevance, describe schemas, and invoke tools by ID. This is a specific action-based description rather than a restatement of the tool name, and it makes the catalog-dispatch role clear.

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 'single entrypoint' framing gives strong contextual guidance, and the action list maps directly to when each mode should be used. It does not explicitly say when not to use this tool or name alternatives, but the context is clear enough for an agent to select it confidently.

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

show_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare readOnlyHint = true, destructiveHint = false, and idempotentHint = true, so the safety profile is fully covered. The description adds the content of the output (platform and adapter versions) but discloses nothing beyond that. Given the annotations, the burden is low and the description meets the bar, though it adds minimal context.

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, direct sentence without any filler. It is front-loaded and serves its purpose without redundancy. Perfectly concise for a trivial utility.

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

Completeness5/5

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

Given that this tool has no parameters, no output schema, and strong annotations covering safety, the description is sufficient. It provides the core information the agent needs to invoke the tool for a version check. Nothing essential is missing.

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 zero parameters, making the schema trivially complete. The baseline for no parameters is 4, and the description does not need to compensate. It correctly omits any parameter details, so the score is appropriate.

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 (show the current MCP platform and adapter versions) with a specific verb and resource. It is distinct from sibling tools like authenticate, connect, or marketplace, which handle other functions. The scope is precise.

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 gives no explicit guidance on when to use the tool versus alternatives. However, because the tool is extremely narrow (no parameters, just a version check), its usage is self-evident. There are no obvious alternatives among the siblings, but the description does not explicitly say when not to use it.

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

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint: true, idempotentHint: true, and destructiveHint: false, which the description does not contradict. The description adds value by specifying exactly what information is returned (installed MCPs, connection status, accounts, catalog tool counts), which goes beyond annotations. This provides useful behavioral context for an informational 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, clear sentence that covers all essential aspects without any fluff. It is front-loaded with the main purpose and then enumerates specifics, making it easy to scan.

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?

Given that there are no parameters and no output schema, the description provides sufficient context about what the tool returns. It is a read-only informational tool with clear content. A minor gap is that it does not mention whether the tool might require prior authentication or if it always succeeds, but for such a simple tool, this is nearly 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 tool has 0 parameters, so there are no parameter semantics to add. The description does not need to compensate for any schema gaps. A score of 4 is appropriate because the description fully explains what the tool returns, which is the only relevant information.

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 the current toolkit state, enumerating specific details: installed MCPs, connection status, connected accounts, and count of catalog tools per MCP. This differentiates it from sibling tools like authenticate, connect, marketplace, etc.

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 the tool is used to inspect the current toolkit state, but does not explicitly state when to use it over siblings. Since it is a read-only informational tool, one could infer it's for checking status, but no explicit guidance or exclusions are provided.

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
    C
    quality
    D
    maintenance
    Enables cryptocurrency trading on Bybit exchange through comprehensive market data access, account management, and automated trading operations. Features smart position validation, trailing stop losses, and risk management tools with demo mode support for safe testing.
    21
  • A
    license
    B
    quality
    C
    maintenance
    Provides a set of MCP tools to interact with the Bybit cryptocurrency exchange API, enabling market data queries, account management, trading operations, and futures grid strategy analysis via natural language.
    19
    22
    MIT
  • F
    license
    B
    quality
    D
    maintenance
    A comprehensive MCP server providing full access to Bybit's v5 API for real-time market data, trading operations, and account management. It enables AI assistants to execute trades, manage positions, and monitor wallet balances with built-in safety controls for both testnet and production environments.
    22
    6
  • A
    license
    B
    quality
    C
    maintenance
    A production-ready MCP server for Bybit — 206 tools covering market data, trading, positions, account management, assets, and real-time WebSocket streams. Enables AI assistants to interact directly with the Bybit cryptocurrency exchange through natural language.
    100
    441
    26
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.