UNPKG

uniswapx-analyzer-mcp

Version:

Model Context Protocol server for UniswapX trading analytics and metrics with multi-chain support (base, ethereum) and cloud deployment

16 lines (12 loc) 395 B
#!/usr/bin/env node /** * UniswapX Analyzer MCP Server * Entry point for NPM package execution */ import { fileURLToPath } from 'url'; import { dirname, join } from 'path'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); // Import and start the MCP server const { startServer } = await import(join(__dirname, '../dist/server.js')); startServer();