sequentialthinking vs solscan-mcp
Side-by-side comparison to help you pick between these two MCP servers.
sequentialthinking by modelcontextprotocol | solscan-mcp by wowinter13 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 40 |
| 30d uses | — | — |
| Score | 75 | 39 |
| Official | ✓ | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceDeveloper Toolsblockchain |
| Language | TypeScript | Rust |
| Last commit | this month | 9 mo ago |
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
solscan-mcp · Summary
A Rust MCP server for querying Solana blockchain data through Solscan API using natural language.
sequentialthinking · Use cases
- Planning complex system migrations with risk assessment
- Debugging production issues requiring step-by-step analysis
- Comparing architecture options with conditional branching
solscan-mcp · Use cases
- Analyzing suspected addresses for criminal activity by combining with other MCPs
- Investigating wallet patterns including MEV, dusting, poisoning, and sandwich attacks
- Querying token information and transaction details on the Solana blockchain
sequentialthinking · Install
Installation
**Claude Desktop**: Add this to your claude_desktop_config.json:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: Use one of the installation buttons or manually configure with:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}solscan-mcp · Install
Installation
Prerequisites:
- Rust toolchain (install via [rustup](https://rustup.rs/))
- Solscan Pro API key (obtain from [Solscan APIs](https://solscan.io/apis))
cargo install solscan-mcpAdd to your Claude Desktop configuration:
{
"mcpServers": {
"solscan-mcp": {
"command": "/Users/$username/.cargo/bin/solscan-mcp",
"args": [],
"env": {
"SOLSCAN_API_KEY": "your_solscan_api_key"
}
}
}
}