sequentialthinking vs solscan-mcp
Side-by-side comparison to help you pick between these two MCP servers.
sequentialthinking by modelcontextprotocol | solscan-mcp by Valennmg | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 75 | 32 |
| Official | ✓ | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceblockchainDeveloper Tools |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
solscan-mcp · Summary
An MCP server for querying Solana blockchain data using natural language through the Solscan API.
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
- Quickly retrieving transaction details using natural language queries
- Checking Solana account balances without writing code
- Building applications that provide blockchain data access through conversational interfaces
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
- Clone the repository:
``bash git clone https://github.com/Valennmg/solscan-mcp cd solscan-mcp ``
- Build the project (requires Rust):
``bash cargo build --release ``
- Run the server:
``bash ./target/release/solscan-mcp ``
- For Claude Desktop, add to
config.json:
```json { "mcpServers": { "solscan": { "command": "path/to/solscan-mcp", "args": [] } } }