algorand-mcp vs sequentialthinking
Side-by-side comparison to help you pick between these two MCP servers.
algorand-mcp by GoPlausible | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 45 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 75 |
| Official | — | ✓ |
| Categories | Developer ToolsFinanceSecurity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
algorand-mcp · Summary
Algorand MCP server provides blockchain tools with secure wallet management for AI agents.
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
algorand-mcp · Use cases
- AI agents managing Algorand accounts and executing transactions
- Smart contract development and testing through MCP-integrated tools
- DeFi operations including liquidity provision and trading across multiple protocols
sequentialthinking · Use cases
- Planning complex system migrations with risk assessment
- Debugging production issues requiring step-by-step analysis
- Comparing architecture options with conditional branching
algorand-mcp · Install
Installation
npm install -g @goplausible/algorand-mcpClaude Desktop Configuration
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"algorand-mcp": {
"command": "npx",
"args": ["@goplausible/algorand-mcp"]
}
}
}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"
]
}
}
}