Server data from the Official MCP Registry
Multi-aggregator swap router for AI agents on Base. 10 bps fee. MCP-native, non-custodial.
Multi-aggregator swap router for AI agents on Base. 10 bps fee. MCP-native, non-custodial.
Remote endpoints: streamable-http: https://swap.paladinfi.com/mcp
Valid MCP server (1 strong, 0 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Open access · No issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-paladinfi-paladin-swap": {
"url": "https://swap.paladinfi.com/mcp"
}
}
}From the project's GitHub README.
Open client and API spec for PaladinFi Swap — a competitive multi-aggregator swap router for AI agents on Base. This repository contains the public REST and MCP API specification, working code examples, and thin client wrappers. The hosted backend at swap.paladinfi.com is proprietary.
Routing scope. PaladinFi Swap queries a limited set of integrated upstream aggregators (currently 0x Settler; 1inch and Odos planned) and returns a competitive route. We do not represent any returned route as the best available, lowest-cost, or optimal across the broader DeFi market. Phrases like "best execution" are reserved-meaning terms in U.S. securities law and are deliberately not used here.
A swap router built for AI agents that need to execute on-chain swaps. Your agent calls a single tool; the service returns ready-to-execute calldata your wallet signs and submits:
Agents skip writing aggregator glue, slippage handling, and fee logic. One call, ready bytes.
The Service is non-custodial: PaladinFi never holds, signs, or moves user funds. Every transaction is signed and submitted by the user's own wallet (or their agent acting on their behalf).
For Claude Code or any MCP-compatible client supporting Streamable-HTTP transport:
claude mcp add --transport http --scope user paladin-swap https://swap.paladinfi.com/mcp
Restart your client. Two tools become available:
swap_quote(sellToken, buyToken, sellAmount, taker, chainId?, slippageBps?)swap_health()See mcp-tools.json for the full tool schemas.
No MCP needed — hit the endpoint directly:
curl -sS https://swap.paladinfi.com/v1/quote \
-H 'content-type: application/json' \
-d '{
"chainId": 8453,
"sellToken": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"buyToken": "0x4200000000000000000000000000000000000006",
"sellAmount": "5000000",
"taker": "0xYOUR_AGENT_WALLET"
}'
Full REST spec in openapi.yaml.
| Method | Path | Purpose |
|---|---|---|
GET | /health | Liveness + fee config |
POST | /v1/quote | Competitive route quote with calldata |
POST | /mcp | MCP Streamable-HTTP transport |
{
"source": "0x",
"chainId": 8453,
"router": "0x0000000000001ff3684f28c67538d4d072c22734",
"calldata": "0x...",
"buyAmount": "2160000000000000",
"minBuyAmount": "2138000000000000",
"sellAmount": "5000000",
"gas": "318707",
"ourFeeBps": 10,
"ourFeeRecipient": "0xeA8C33d018760D034384e92D1B2a7cf0338834b4",
"estimatedOurFeeAmount": "2160000000000",
"estimatedOurFeeToken": "0x4200000000000000000000000000000000000006"
}
Submit the transaction as to=router, data=calldata, value=0 (for ERC20→ERC20) from taker.
examples/python/quote_and_swap.py — Python with web3.pyexamples/typescript/quote_and_swap.ts — TypeScript with viemA flat 10 basis points (0.1%) is taken on the buy token. The fee is calculated against the actual fill amount, not the quoted estimate, so you never pay more than expected even if the pool moves between quote and fill.
Fees route directly to the PaladinFi treasury — no on-chain receipt step on your side. The fee recipient address is published in /health so it's auditable on-chain. The service stays free to query, with no per-call charges or spread on top.
Production. The endpoint is live, monitored, and verified end-to-end with on-chain test transactions on Base. See /health for current fee config and version.
| File / folder | Purpose |
|---|---|
README.md | This file |
LICENSE | MIT — covers everything in this repo |
openapi.yaml | OpenAPI 3.0 spec for the public REST API |
mcp-tools.json | MCP tool schemas |
examples/ | Working code examples (Python, TypeScript) |
Not in this repository: the hosted backend (proprietary). This repo is the public client surface — install instructions, schemas, and integration code samples.
Operated by Malcontent Games LLC, doing business as PaladinFi, an Ohio limited liability company. The Service routes quotes through third-party aggregators (currently 0x). You retain custody — your agent signs every transaction. PaladinFi never holds user funds.
Use of the hosted Service is subject to the PaladinFi Terms of Service and Privacy Policy.
The contents of this repository are released under the MIT License. The hosted backend is proprietary and not covered.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.