debridge-mcp
Server Details
deBridge MCP
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- debridge-finance/debridge-mcp
- GitHub Stars
- 31
- Server Listing
- deBridge
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.5/5 across 5 of 5 tools scored. Lowest: 2.9/5.
Each tool has a clearly distinct purpose with no overlap. create_tx handles cross-chain swaps, transaction_same_chain_chain_swap handles same-chain swaps, get_supported_chains lists networks, search_tokens finds tokens, and get_instructions provides guidance. The descriptions make the boundaries unambiguous.
The naming is mostly consistent with a verb_noun pattern (e.g., create_tx, get_instructions, get_supported_chains, search_tokens), but transaction_same_chain_swap deviates slightly by using a noun_phrase format instead of a verb-first approach. This minor inconsistency reduces the score from perfect.
With 5 tools, the count is well-scoped for a deBridge MCP server focused on cross-chain and same-chain swaps. Each tool serves a specific, necessary function without bloat, fitting typical expectations for a domain-specific server.
The tool set covers core operations for deBridge swaps: creating transactions (both cross-chain and same-chain), discovering supported chains and tokens, and accessing guidance. A minor gap is the lack of tools for checking transaction status or history, but agents can work around this with the provided tools.
Available Tools
5 toolscreate_txBInspect
Create a cross-chain swap transaction via the deBridge DLN protocol
| Name | Required | Description | Default |
|---|---|---|---|
| dstChainId | Yes | Destination chain ID | |
| srcChainId | Yes | Source chain ID | |
| srcChainTokenIn | Yes | Token address on source chain | |
| dstChainTokenOut | Yes | Token address on destination chain | |
| affiliateFeePercent | No | Affiliate fee percentage | |
| affiliateFeeRecipient | No | Wallet address to receive affiliate fees | |
| srcChainTokenInAmount | Yes | Amount in smallest units (wei, lamports) | |
| dstChainTokenOutAmount | No | Output amount or 'auto' for best quote | |
| prependOperatingExpenses | No | Whether to prepend estimated operating expenses to the input amount | |
| dstChainTokenOutRecipient | Yes | Wallet address on destination chain to receive tokens | |
| dstChainOrderAuthorityAddress | Yes | Address on destination chain authorized to manage the order | |
| srcChainOrderAuthorityAddress | Yes | Address on source chain authorized to manage the order |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure but fails to explain critical execution details: whether this generates unsigned transaction data or executes immediately, what the return format is, failure modes, gas cost implications, or timing constraints for cross-chain settlement.
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 single-sentence description is perfectly efficient with zero waste. Each component earns its place: the verb ('Create'), the object ('cross-chain swap transaction'), and the protocol context ('via the deBridge DLN protocol').
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 complex 12-parameter financial transaction tool with no output schema or annotations, the description is insufficient. It omits critical context such as prerequisite steps, security considerations for cross-chain operations, slippage protection mechanisms, and what the tool returns (transaction payload vs. execution result).
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 100% description coverage, establishing a baseline score of 3. The description adds no additional parameter context (e.g., explaining the relationship between authority addresses, or that dstChainTokenOutAmount accepts 'auto'), but meets the minimum threshold given the comprehensive schema.
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 specific action (Create), resource (cross-chain swap transaction), and underlying protocol (deBridge DLN). It effectively distinguishes from the sibling tool 'transaction_same_chain_swap' by explicitly specifying 'cross-chain'.
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 no guidance on when to use this tool versus the same-chain alternative, nor does it mention prerequisites such as token approvals, balance requirements, or the need for subsequent transaction signing/broadcasting.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_instructionsAInspect
Returns the full guide for the deBridge MCP server. CALL THIS FIRST.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Mentions returning a 'full guide' but omits format (markdown/plaintext), approximate length, structure, or whether content is static/dynamic. Adequate but minimal behavioral disclosure.
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 with zero waste. Critical instruction 'CALL THIS FIRST' is appropriately front-loaded in all-caps for emphasis. Every word earns its place.
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?
Sufficient for a zero-parameter onboarding tool. Mention of 'full guide' provides adequate context despite missing output schema, though specifying return format (e.g., 'markdown guide') would strengthen completeness.
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?
Zero parameters present, warranting baseline score per rubric. Schema is empty object with 100% coverage. Description correctly implies no inputs are required.
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 specific verb ('Returns') and resource ('full guide') with clear scope. Distinct from siblings like get_supported_chains (which returns chain data) and create_tx (which creates transactions).
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?
Explicit instruction 'CALL THIS FIRST' establishes clear sequencing for onboarding. However, lacks explanation of why it should be called first or what specific information the guide provides that prerequisites other calls.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_supported_chainsAInspect
List all blockchain networks supported by deBridge for cross-chain swaps
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full disclosure burden. States scope 'all' (implying no filtering/pagination) but omits details about caching, rate limits, data freshness, or whether results are static versus dynamic.
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 zero waste. Essential information (action, resource, provider, context) is front-loaded and appropriately sized for a zero-parameter discovery tool.
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?
Adequate for low complexity tool (0 params, no annotations). Mentions return type implicitly via 'List', though could benefit from brief note on return structure since no output schema exists.
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?
Input schema contains zero parameters, triggering baseline score of 4 per evaluation rules. Description appropriately requires no additional parameter explanation.
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?
Description uses specific verb 'List' with clear resource 'blockchain networks', specifies the provider 'deBridge', and scopes it to 'cross-chain swaps' context which distinguishes it from the sibling 'transaction_same_chain_swap' tool.
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 implied usage context through 'for cross-chain swaps' phrase, but lacks explicit guidance on when to invoke (e.g., before using create_tx) versus alternatives or prerequisites for the workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_tokensBInspect
Search for tokens by name, symbol, or contract address in the deBridge token database
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Filter by token name (partial, case-insensitive) | |
| limit | No | Max results (default 10) | |
| query | Yes | Token name, symbol, or contract address | |
| chainId | No | Filter by chain ID |
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 disclosure burden. It identifies the data source ('deBridge token database') but fails to disclose behavioral traits like search logic (fuzzy vs. exact), rate limits, authentication requirements, or what happens when no matches are found.
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, efficient sentence with no redundant words. It front-loads the action and resource, earning its place without waste.
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 4-parameter search tool with simple types and no output schema, the description covers the basic function but leaves gaps. It does not clarify the relationship between 'query' (required) and 'name' (optional filter) parameters, nor does it hint at the return structure despite the lack of output 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?
With 100% schema description coverage, the baseline is 3. The description lists searchable fields ('name, symbol, or contract address') which mirrors the 'query' parameter schema, but adds no additional semantics, examples, or clarification on how 'query' differs from the separate 'name' filter parameter, nor does it elaborate on expected formats for contract addresses.
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 specific action ('Search') and resource ('tokens') with the specific fields used for searching ('name, symbol, or contract address'). It implicitly distinguishes from transaction-focused siblings (create_tx, transaction_same_chain_swap) by being a database lookup, though it doesn't explicitly name them.
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 usage context by specifying searchable fields and the target database ('deBridge token database'), but lacks explicit when-to-use guidance or contrasts with alternatives. Since siblings perform fundamentally different operations (transactions vs. search), the lack of explicit comparison is acceptable but not ideal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
transaction_same_chain_swapCInspect
Create a same-chain token swap transaction via deBridge
| Name | Required | Description | Default |
|---|---|---|---|
| chainId | Yes | Chain ID (native or deBridge internal) | |
| tokenIn | Yes | Input token address | |
| slippage | No | Slippage tolerance or 'auto' | |
| tokenOut | Yes | Output token address | |
| senderAddress | No | Transaction submitter address | |
| tokenInAmount | Yes | Amount in smallest units | |
| tokenOutAmount | No | Expected output amount or 'auto' | |
| tokenOutRecipient | Yes | Address on the source chain to receive target tokens | |
| affiliateFeePercent | No | Affiliate fee percentage | |
| affiliateFeeRecipient | No | Wallet address to receive affiliate fees | |
| srcChainPriorityLevel | No | Priority level: 'normal' or 'aggressive' (default: 'normal') |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full disclosure burden but fails to clarify critical behavioral traits: whether the tool returns an unsigned transaction for client-side signing or submits directly, what the return value contains (transaction hash? serialized data?), failure modes, or gas estimation behavior.
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 is appropriately front-loaded with no redundant phrases. However, extreme brevity is insufficient for an 11-parameter financial operation tool where safety-critical context is missing.
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 complex mutation tool with no output schema and no annotations, the description omits essential context: return value structure, execution model (sign-and-send vs. build-only), and deBridge-specific behavioral constraints. The 100% schema coverage for inputs does not compensate for missing output and behavioral documentation.
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%, so parameters are fully documented in structured fields. The description adds no supplemental semantic context (e.g., address format expectations, 'auto' behavior semantics for slippage/amount, or relationships between affiliate fee parameters), warranting baseline score.
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 core action (create), resource (same-chain token swap transaction), and provider (deBridge). It effectively distinguishes from potential cross-chain operations via the 'same-chain' qualifier. However, it does not clarify relationship to sibling 'create_tx' (whether this is a specialized variant or distinct pattern).
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 guidance provided on when to use this tool versus the generic 'create_tx' sibling, nor any mention of prerequisites such as token approvals, balance requirements, or supported chain validation that should precede invocation.
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!
Your Connectors
Sign in to create a connector for this server.