EIP MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@EIP MCP ServerGenerate an implementation plan based on our SSOT"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
EIP MCP Server
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:
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.
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 localssot/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-server2. 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 foruvx. Without it,uvxbuild 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.10or higherPackage Manager: uv by Astral
Ports: Port
8123must be available for the EIP Webhook Listener.
🤝 Contributing
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
This server cannot be installed
Maintenance
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
- FlicenseBqualityDmaintenanceConnects 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.42
- AlicenseAqualityCmaintenanceAnalyzes codebases from local directories, GitHub, and Azure DevOps, providing intelligent context to AI coding assistants through repository structure, critical files, and semantic maps.144MIT
- Alicense-qualityAmaintenanceEnables AI agents to read, modify, and build from architecture models, keeping the model as the source of truth for intent and synchronized with code.31109BSD 3-Clause
- Alicense-qualityBmaintenanceEnables 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.2Apache 2.0
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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