mcp-delphi vs sequentialthinking
Side-by-side comparison to help you pick between these two MCP servers.
mcp-delphi by flydev-fr | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 75 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
mcp-delphi · Summary
MCP server for building and cleaning Delphi, Lazarus, and Free Pascal projects via MSBuild and lazbuild tools.
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
mcp-delphi · Use cases
- Automating build processes for Delphi applications via MCP tools in AI assistants
- Cleaning build artifacts from Pascal projects without manual IDE intervention
- Building Lazarus projects with specific configurations remotely through MCP protocol
sequentialthinking · Use cases
- Planning complex system migrations with risk assessment
- Debugging production issues requiring step-by-step analysis
- Comparing architecture options with conditional branching
mcp-delphi · Install
- Install Node.js >= 18
- Clone repository:
git clone https://github.com/flydev-fr/mcp-delphi - Install dependencies:
pnpm installornpm install - Build:
pnpm run build - Configure environment variables in
.envfile (paths to rsvars.bat and MSBuild) - Run server:
node --env-file=.env dist/server.js
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-delphi": {
"command": "node",
"args": ["--env-file=.env", "/path/to/mcp-delphi/dist/server.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"
]
}
}
}