Install
$ agentstack add mcp-exekerey-3xpl-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
3xpl.com JSON API MCP server
Overview
3xpl API in form of a Model Context Protocol (MCP) server.
Allows LLMs to interact with data on 48 blockchains.
This repository can also be an example of 3xpl JSON API usage, see details in the code.
[//]: # (demo video from Claude)
List of available tools
| name | description | status | |---------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|--------| | resolveensdomain | resolves an ENS domain to a regular address | ✅ | | detectblockchains | retrieve a list of blockchains on which a transaction/address is present | ✅ | | getlatestblock | get latest block height in specified blockchain | ✅ | | getaveragefee24husd | retrieves average transaction fee for last 24 hours in specified blockchain in US dollars. | ✅ | | getmempooleventscount | get the number of unconfirmed events(transfers, inputs/outputs, not transactions) at the moment in the memory pool of provided blockchain | ✅ | | geteventscount24h | retrieve number of events(transfers, inputs/outputs, not whole transactions) in last 24h for provided blockchain | ✅ | | getblockoverview | extract short summary about a block in provided blockchain | ✅ | | getaddressoverview | extract short summary about an address in provided blockchain | ✅ | | gettransactionoverview | extract short summary about a transaction in provided blockchain(to be improved) | ✅ | | listblockchainsandmodules | get a list of blockchains and their modules with module descriptions | ✅ | | aggregateblocktransactions | aggregate transactions in a block | ✅ | | aggregatetransactiontransfers | aggregate individual transfers in a transactions | ✅ | | aggregateaddressbalances | aggregate balances for an address with | ✅ | | aggregateaddresstransactions | aggregate confirmed transactions for an address | ✅ | | aggregateaddressmempool | aggregate pending transactions for an address | ✅ |
List of available prompts
| name | description | |---------------------|---------------------------------------------------------------------------| | getblockchaininfo | makes LLM dig deeper into data for providing the most fulfilled response. |
[//]: # (*might be inaccurate, see the API docs and policy for details.)
Installation
# get the repository
git clone https://github.com/exekerey/3xpl-mcp.git
cd 3xpl-mcp
# create and activate virtual environment
uv venv
source .venv/bin/activate
# install dependencies
uv pip install -e .
MCP configuration:
{
"mcpServers": {
"3xpl_API": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"{:path_to_cloned}/3xpl_mcp/main.py"
],
"env": {
"THREEXPL_API_KEY": ""
}
}
}
}
**Note*: Set your API key from 3xpl to use the main API. If the THREEXPL_API_KEY field in the config file is left blank, the MCP server will use the sandbox API, which has rate limits.
**Note 2*: if MCP server doesn't start you might need to provide full path to uv in the command field.
Contribution
Feel free to open issues for bugs or suggestions. Pull requests are also welcome – just make sure to provide description of your changes.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: exekerey
- Source: exekerey/3xpl-mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.