MCP Catalogs
Home

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
Score4075
Official
Categories
Developer ToolsOps & InfraOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit9 mo agothis 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

  1. Install Node.js >= 18
  2. Clone repository: git clone https://github.com/flydev-fr/mcp-delphi
  3. Install dependencies: pnpm install or npm install
  4. Build: pnpm run build
  5. Configure environment variables in .env file (paths to rsvars.bat and MSBuild)
  6. 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"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.