gahmen-mcp vs sequentialthinking
Side-by-side comparison to help you pick between these two MCP servers.
gahmen-mcp by aniruddha-adhikary | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 75 |
| Official | — | ✓ |
| Categories | DatabasegovernmentDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
gahmen-mcp · Summary
MCP server for Singapore government data APIs with search, metadata, and download capabilities.
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
gahmen-mcp · Use cases
- Data journalists analyzing Singapore public datasets for reporting
- Researchers accessing filtered government statistics for academic work
- Developers building applications on top of Singapore government open data
sequentialthinking · Use cases
- Planning complex system migrations with risk assessment
- Debugging production issues requiring step-by-step analysis
- Comparing architecture options with conditional branching
gahmen-mcp · Install
npm installFor Claude Desktop, add this to your config.json:
{
"mcpServers": {
"gahmen": {
"command": "node",
"args": ["path/to/gahmen-mcp/dist/index.js"]
}
}
}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"
]
}
}
}