MCP Catalogs
Home

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
Score7532
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
FinanceblockchainDeveloper Tools
LanguageTypeScriptRust
Last committhis monththis 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

  1. Clone the repository:

``bash git clone https://github.com/Valennmg/solscan-mcp cd solscan-mcp ``

  1. Build the project (requires Rust):

``bash cargo build --release ``

  1. Run the server:

``bash ./target/release/solscan-mcp ``

  1. For Claude Desktop, add to config.json:

```json { "mcpServers": { "solscan": { "command": "path/to/solscan-mcp", "args": [] } } }

Comparison generated from public README + GitHub signals. Last updated automatically.