A Model Context Protocol (MCP) server that provides Claude AI with direct access to Everclear.org's API endpoints. This enables Claude to interact with the Everclear protocol, query intents and invoices, retrieve analytics, and perform various blockchain-related operations.
- Get Intents: Retrieve a list of intents with optional filters
- Get Intent Details: Get detailed information about a specific intent
- Get Invoices: Fetch list of invoices with optional filters
- Get Invoice Details: Get detailed information about a specific invoice
- Get Invoice Min Amounts: Calculate minimum amounts needed to settle an invoice
- Get Route Quote: Get quote for a route including fees and limits
- Get Liquidity Flow: Retrieve liquidity flow metrics
- Get Clearing Volume: Retrieve clearing volume metrics
- Clone the repository:
git clone <repository-url>
cd everclear-mcp- Install dependencies:
npm install- Build the project:
npm run buildFor development:
npm run devFor production:
npm start-
Open Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
- macOS:
-
Add the Everclear MCP server configuration:
{
"mcpServers": {
"everclear": {
"command": "node",
"args": ["/path/to/everclear-mcp/dist/index.js"]
}
}
}- Restart Claude Desktop
Once connected, Claude will have access to the following tools:
Retrieve a list of intents from Everclear.
- Parameters:
status(optional): Filter by intent statuslimit(optional): Number of results to returnoffset(optional): Pagination offset
Get detailed information about a specific intent.
- Parameters:
intentId(required): The ID of the intent
Retrieve a list of invoices.
- Parameters:
status(optional): Filter by invoice statuslimit(optional): Number of results to returnoffset(optional): Pagination offset
Get detailed information about a specific invoice.
- Parameters:
invoiceId(required): The ID of the invoice
Calculate minimum amounts needed to settle an invoice.
- Parameters:
invoiceId(required): The ID of the invoice
Get a quote for a route including fees and limits.
- Parameters:
fromChain(required): Source chain identifiertoChain(required): Destination chain identifieramount(required): Amount to transfertoken(required): Token address or identifier
Retrieve liquidity flow metrics.
- Parameters:
timeRange(optional): Time range for metricschainId(optional): Filter by specific chain
Retrieve clearing volume metrics.
- Parameters:
timeRange(optional): Time range for metricschainId(optional): Filter by specific chain
everclear-mcp/
├── src/
│ └── index.ts # Main MCP server implementation
├── dist/ # Compiled JavaScript output
├── package.json # Project dependencies and scripts
├── tsconfig.json # TypeScript configuration
├── README.md # This file
└── PRODUCT_SPEC.md # Product specification document
npm run build: Compile TypeScript to JavaScriptnpm run dev: Run the server in development mode with hot reloadnpm start: Run the compiled server
For more information about the Everclear API endpoints, visit: https://docs.everclear.org/developers/api
ISC