Skip to main content
Glama
0xReisearch

REI Crypto MCP Server

by 0xReisearch

get_bridges

Retrieve comprehensive bridge data with recent volume summaries to analyze cross-chain asset transfers in cryptocurrency ecosystems.

Instructions

GET /bridges

List all bridges along with summaries of recent bridge volumes. Parameters: include_chains: set whether to include current previous day volume breakdown by chain

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_chainsNo

Implementation Reference

  • The main handler function for the 'get_bridges' tool, decorated with @mcp.tool() which handles both implementation and registration in MCP. It makes a GET request to the DefiLlama /bridges endpoint with optional chain inclusion parameter and returns the JSON response as string.
    @mcp.tool() async def get_bridges(include_chains: bool = True) -> str: """GET /bridges List all bridges along with summaries of recent bridge volumes. Parameters: include_chains: set whether to include current previous day volume breakdown by chain """ params = {'includeChains': str(include_chains).lower()} result = await make_request('GET', '/bridges', params) return str(result)

Latest Blog Posts

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/0xReisearch/crypto-mcp-beta'

If you have feedback or need assistance with the MCP directory API, please join our Discord server