A Model Context Protocol (MCP) server for interacting with the Solvitor API. This server provides tools to access the AI-powered platform that helps developers extract IDL files from closed-source Solana smart contracts and decompile them. This MCP server exposes the following tools for interacting with the Solvitor API: - Extract IDL (Interface Definition Language) from any Solana program using r
Add this skill
npx mdskills install Adeptus-Innovatio/solvitor-mcpProvides Solana smart contract IDL extraction via API with clear setup instructions
1# π¦Ύπ solvitor-mcp: A Solvitor API MCP Server in Rust23[](https://archestra.ai/mcp-catalog/Adeptus-Innovatio__solvitor-mcp)45## Overview67A Model Context Protocol (MCP) server for interacting with the Solvitor API. This server provides tools to access the AI-powered platform that helps developers extract IDL files from closed-source Solana smart contracts and decompile them.89## Features1011This MCP server exposes the following tools for interacting with the Solvitor API:12131. `decode`14 - Extract IDL (Interface Definition Language) from any Solana program using reverse engineering techniques15 - Inputs:16 - `program_id` (string): Base58-encoded Solana program address (32-44 characters)17 - `url` (string, optional): Solana RPC endpoint URL (defaults to mainnet-beta)18 - Returns: IDL structure with program metadata and type ("anchor" or "native")1920## Installation2122Prerequisites:23- Rust toolchain (install via [rustup](https://rustup.rs/)) β for regular usage24- Solvitor API key. You can obtain one [here](https://solvitor.xyz/developer-settings) for free.2526### Regular Usage2728```bash29cargo install solvitor-mcp3031where solvitor-mcp # -> /Users/$username/.cargo/bin/solvitor-mcp32```3334Add the following to your `claude_desktop_config.json` or `claude_config.json`:3536```json37{38 "mcpServers": {39 "solvitor-mcp": {40 "command": "/Users/$username/.cargo/bin/solvitor-mcp",41 "args": [],42 "env": {43 "SOLVITOR_API_KEY": "your_solvitor_api_key"44 }45 }46 }47}48```495051### Remote MCP5253Need remote MCP? Ping us on Twitter, we'll build the feature in a couple of days: [x.com/solvitor_xyz](https://x.com/solvitor_xyz)545556## License5758MIT
Full transparency β inspect the skill content before installing.