MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"solana-defi-analytics-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides comprehensive analytics and insights for Solana wallets and their DeFi activities.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Let AI agents create, discover, and track tokens across chains via Printr.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
Model Context Protocol Extension of Coinbase Agentkit
MaverickMCP - Personal Stock Analysis MCP Server
MCP Security Weekly
Get CVE alerts and security updates for Solana DeFi Analytics MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides comprehensive analytics and insights for Solana wallets and their DeFi activities.
Retrieves detailed transaction history for a Solana wallet address.
{
address: string,
limit?: number // default: 20
}
Performs comprehensive analysis of a wallet's DeFi activity and generates recommendations.
{
address: string
}
Provides detailed information about a specific Solana transaction.
{
signature: string
}
git clone https://github.com/kirtiraj22/Solana-DeFi-Analytics-MCP-Server
cd solana-mcp
pnpm install
cp .env.example .env
Configure the following variables in .env:
SOLANA_RPC_URL=your_rpc_url_here
Start the MCP server:
pnpm run dev
To Test via the MCP Inspector run the following commands:
pnpm build
npx @modelcontextprotocol/inspector node build/index.js
{
"mcpServers": {
"filesystem": {
"command": "node",
"args": [
"<PROJECT_PATHL>\\solana-mcp\\build\\index.js"
],
"env": {
"SOLANA_RPC_URL": "<YOUR_SOLANA_RPC_URL>"
}
}
}
}
src/
├── analyzers/ # Analysis logic for patterns, DeFi positions, etc.
├── config/ # Configuration constants and settings
├── formatters/ # Output formatting for different types of data
├── services/ # Core services for blockchain interaction
├── tools/ # MCP tool implementations
├── types/ # TypeScript interfaces and types
└── utils/ # Utility functions and helpers
src/analyzers/src/formatters/src/services/src/tools/