Skip to main content
Glama

EIP MCP Server

Python Version MCP Transport Framework

The EIP MCP Server is the bridge between your local development environment and the Engineering Intelligence Platform (EIP). It exposes local workspace orchestration capabilities to your AI-powered IDEs via the Model Context Protocol (MCP).


🚀 About the Engineering Intelligence Platform (EIP)

The Engineering Intelligence Platform (EIP) is a modern governance and planning workspace designed for AI-driven software engineering. EIP automatically maintains a Single Source of Truth (SSOT), visualizes architectural knowledge graphs, and governs architectural drift.

The EIP MCP Server empowers AI Coding Agents (such as Antigravity, Claude Desktop, Cursor, or Windsurf) to natively interact with your EIP project.

How it Connects to EIP

This MCP server operates in a dual-mode architecture:

  1. Stdio MCP Interface: Seamlessly exposes AI tools to your local IDE Agent, allowing it to pull architecture guidelines, parse SSOT requirements, and automatically synchronize your code drift with the remote EIP Knowledge Graph.

  2. Background Webhook Listener: Upon initialization, the server silently spawns an HTTP listener on port 8123. This allows the cloud-based EIP Web App to trigger deep architectural tasks (like generating an Implementation Plan) which are then executed securely on your local file system.


Related MCP server: Code Expert MCP Server

🛠️ Available Tools

When connected to your IDE, the AI agent gains access to the following tools:

  • initialize_local_ssot: Connects to the EIP Web App to scaffold your local ssot/ directory using the project's Software Requirements Document (SRD).

  • generate_implementation_plan: Acts as a Staff Engineer. Analyzes local SSOT context and outputs an exhaustive, step-by-step implementation plan.

  • generate_task_plan: Decompiles the implementation plan into highly specific executable tasks for local agents.

  • generate_test_plan: Creates comprehensive testing strategies (STQE, RTM) mapped to feature requirements.

  • generate_security_plan: Generates a rigorous application security plan tailored to the project architecture.

  • synchronize_ssot: Pushes local documentation and architectural updates back to the EIP Web App's Knowledge Graph to resolve drift.


📦 Installation & Usage

You can run the server seamlessly using uvx, meaning no manual virtual environments or dependency management is required.

1. Direct Execution via uvx

If you wish to test the server locally or run it via terminal:

uvx --from git+https://github.com/eecheonwu/eip-mcp-server.git eip-mcp-server

2. IDE Configuration (Claude Desktop, Antigravity, etc.)

To give your AI coding assistant full access to the EIP ecosystem, add the following to your IDE's MCP configuration file (e.g., mcp_config.json or claude_desktop_config.json).

⚠️ Important: The -q (quiet) flag is required for uvx. Without it, uvx build logs will pollute standard output, causing the MCP JSON-RPC initialization handshake to crash.

{
  "mcpServers": {
    "eip-mcp-server": {
      "command": "uvx",
      "args": [
        "-q",
        "--from",
        "git+https://github.com/eecheonwu/eip-mcp-server.git",
        "eip-mcp-server"
      ],
      "env": {
        "GEMINI_API_KEY": "your-api-key-here"
      }
    }
  }
}

Supported IDEs:

  • Claude Desktop: Add to %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS).

  • Antigravity CLI / IDE: Add to ~/.gemini/config/mcp_config.json.

  • Cursor: Configure via Settings > Features > MCP.


🔧 Architecture Requirements

  • Python: 3.10 or higher

  • Package Manager: uv by Astral

  • Ports: Port 8123 must be available for the EIP Webhook Listener.

🤝 Contributing

Contributions, issues, and feature requests are welcome! Feel free to check the issues page.

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    Connects AI assistants to a local Codex engine for performing deep, project-level code reviews and automated refactoring. It enables context-aware bug fixes and multi-file analysis through a standardized bridge between modern AI clients and local development environments.
    4
    2
  • A
    license
    -
    quality
    A
    maintenance
    Enables AI agents to read, modify, and build from architecture models, keeping the model as the source of truth for intent and synchronized with code.
    31
    109
    BSD 3-Clause
  • A
    license
    -
    quality
    B
    maintenance
    Enables AI agents to perform hybrid code search, get explanations, analyze relations and impacts, retrieve context packs, and generate documentation across ~45 languages via 17 MCP tools, all powered by a local vector database and LLM.
    2
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • AI Agent with Architectural Memory. Impact analysis (free), tests and code from the graph (pro).

  • The team layer for AI coding agents: shared contracts, collision alerts, E2EE sessions.

  • Give your AI agent a persistent map of your project's structure, dependencies, and bugs.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/eecheonwu/eip-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server