OmniForge MCP
Integrates with Google Gemini CLI to offer structured engineering workflows and enterprise development tools to Gemini agents.
Allows LangChain agents to invoke OmniForge's engineering workflow tools and agent skills programmatically.
Enables OpenAI Codex CLI and ChatGPT to access OmniForge's engineering tools and standardized workflows for AI-driven software development.
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., "@OmniForge MCPrun the code review workflow on the latest commit"
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.
π Product Overview
OmniForge MCP is an enterprise-grade Model Context Protocol (MCP) platform created by Ankur Gaurav that enables AI coding assistants and autonomous agents to securely connect with external tools, APIs, databases, file systems, cloud services, and business applications through a unified, standardized interface.
The platform standardizes the way developer teams plan, build, test, and ship software by offering a structured, reliable, and repeatable engineering workflow.
Related MCP server: agent-comm
π Why OmniForge MCP?
Modern AI applications require reliable context and real-time execution capabilities. OmniForge MCP bridges the gap between Large Language Models (LLMs) and enterprise infrastructure by offering:
Structured Workflow: Follow a proven software engineering process from start to finish.
Engineered for Developers: Built to support real-world development practices and modern IDEs.
Consistent & Reliable: Ensure consistency across projects, repositories, and developer teams.
Multi-Client Installation: Single command
omniforge install --allconfigures Claude Desktop, Cursor IDE, VS Code, OpenAI Codex, ChatGPT, Gemini, and Antigravity.Accelerate Delivery: Reduce noise, focus on building, and deliver with confidence.
β¨ Features & Capabilities
Feature | Status | Description |
STDIO Transport | β Production Ready | Standard I/O line protocol for desktop clients (Claude Desktop, Cursor, VSCode) |
HTTP & SSE Transports | β Production Ready | High-concurrency REST endpoints ( |
Tool Registry | β Production Ready | Exposes 14 agent skills and 10 engineering workflows as invokable MCP Tools |
Prompt Engine | β Production Ready | 10 enterprise prompt library templates with variable interpolation ( |
Resource Registry | β Production Ready | Standardized |
CLI Control Suite | β Production Ready | 12 operational subcommands ( |
Multi-Client Installers | β Production Ready | Automated setup for Claude, Cursor, VS Code, Codex, ChatGPT, Gemini, and Antigravity |
Plugin Ecosystem | β Production Ready | Dynamic plugin manager with |
Authentication Middleware | β Production Ready | API Key and Bearer token security hooks for HTTP & SSE endpoints |
TypeScript & Python SDKs | β Production Ready | Strongly-typed client libraries for TypeScript and Python |
ποΈ Architecture Overview
OmniForge MCP follows Hexagonal Architecture principles, separating core business logic from external transports and integrations.
graph TD
subgraph Clients["AI Clients & IDEs"]
Claude["Claude Desktop"]
Cursor["Cursor IDE"]
VSCode["VSCode Extension"]
Codex["OpenAI Codex"]
ChatGPT["ChatGPT Actions"]
Gemini["Google Gemini"]
Antigravity["Google Antigravity"]
end
subgraph Transports["Multi-Transport Gateway"]
STDIO["STDIO Transport"]
HTTP["HTTP REST (/rpc, /health)"]
SSE["SSE Event Stream (/sse)"]
end
subgraph CoreEngine["OmniForge Core Engine"]
Auth["Auth & Security Middleware"]
ToolReg["Tool Registry (14 Skills + 10 Workflows)"]
PromptReg["Prompt Registry (10 Templates)"]
ResourceReg["Resource Registry (omniforge://)"]
Runner["Workflow Execution Engine"]
PluginMgr["Plugin Manager & Marketplace"]
end
Clients -->|STDIO / HTTP / SSE| Transports
Transports --> Auth
Auth --> ToolReg
Auth --> PromptReg
Auth --> ResourceReg
ToolReg --> Runner
ToolReg --> PluginMgrπ» Supported Clients
Claude Desktop (Anthropic MCP Client)
Cursor IDE
VS Code Extensions
OpenAI Codex CLI
ChatGPT Actions & Custom GPTs
Google Gemini CLI
Google Antigravity Agent
LangChain & LlamaIndex Agents
Custom Autonomous AI Agents
π¦ Installation
Install the OmniForge CLI globally via npm:
npm install -g omniforgeOr run via npx:
npx omniforge doctorInstall MCP integration into all supported AI clients:
omniforge install --allβ‘ Quick Start
1. System Diagnostic Health Check
Verify system environment, Node.js version, Git status, write permissions, and MCP server readiness:
omniforge doctor2. Initialize Workspace
Generate .omniforge/config.json in your project directory:
omniforge init3. Install AI Client Configurations
Auto-detect and generate MCP configuration files:
omniforge install --all4. Start Production MCP Server
Start the server in HTTP/SSE mode (default port 8080):
npm run mcp:startFor STDIO mode (IDE integration):
node mcp/dist/server.js --stdioπ Folder Structure
omniforge/
βββ apps/ # Modern Documentation & Interactive Dashboard App
βββ packages/ # Monorepo Core & Client SDKs
β βββ core/ # ConfigManager, Logger, Telemetry, PluginLoader, UpdateManager
β βββ sdk/ # TypeScript & Python Client SDKs
βββ mcp/ # Production MCP Server (STDIO, HTTP, SSE)
β βββ mcp.json # MCP Manifest Descriptor
β βββ src/ # Transports, Handlers, Middleware
βββ cli/ # OmniForge CLI Control Suite & Installers
βββ skills/ # 14 Standardized & Categorized Agent Skills
βββ prompts/ # 10 Enterprise Prompt Library Templates
βββ workflows/ # 10 Executable Engineering Workflows
βββ templates/ # Generator Templates (Project, Skill, Prompt, Plugin)
βββ plugins/ # Dynamic Plugin System & Marketplace Architecture
βββ docs/ # 16 Complete Documentation Guides & Tutorials
βββ examples/ # Executable Demos & SDK Usage
βββ tests/ # Vitest Test Suite (18 Test Files, 52 Tests)
βββ sprints/ # 11 Sprint Deliverables Tracking (Sprint 1 to 11)
βββ docker/ # Dockerfile & Docker Compose ConfigsπΊοΈ Roadmap
All 11 development sprints have been fully completed:
Sprint | Subfolder | Key Deliverables | Status |
Sprint 1 | Monorepo Setup & Core Layout | β Completed | |
Sprint 2 | Architecture & Error Hierarchy | β Completed | |
Sprint 3 | Multi-Transport MCP Server (STDIO, HTTP, SSE) | β Completed | |
Sprint 4 | 14 Agent Skills Migration & Validation | β Completed | |
Sprint 5 | Enterprise Prompt Library & Prompt Engine | β Completed | |
Sprint 6 | OmniForge CLI Suite & Master Rebranding | β Completed | |
Sprint 7 | Plugin Loader Ecosystem & Marketplace Schema | β Completed | |
Sprint 8 | Multi-Client MCP Installer Suite (7 AI Clients) | β Completed | |
Sprint 9 | Complete 16 Documentation Guides & Portal | β Completed | |
Sprint 10 | Performance, Regression & Coverage Test Suite | β Completed | |
Sprint 11 | v1.0.0 Production Release & Public Launch | β Completed |
π€ Contributing
Contributions are welcome! Please read CONTRIBUTING.md and CODE_OF_CONDUCT.md before submitting pull requests.
git clone https://github.com/ankur-gaurav161418/omniforge.git
npm install
npm run build
npm testπ License
Distributed under the MIT License.
Copyright (c) 2026 Ankur Gaurav (https://github.com/ankur-gaurav161418).
π¬ Support & Community
Repository: https://github.com/ankur-gaurav161418/omniforge
Issues: Submit a Bug or Feature Request
Security Policy: SECURITY.md
Author: Ankur Gaurav (https://github.com/ankur-gaurav161418)
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
- Alicense-qualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.54MIT
- Alicense-qualityDmaintenanceMCP server that enables AI coding agents to communicate, share state, and coordinate work in real time via MCP tools or REST API.895MIT
- FlicenseBqualityCmaintenanceMCP server that gives AI coding assistants persistent memory, structural code graph analysis, and safe multi-agent coordination, enabling them to answer architectural questions, track decisions across sessions, and coordinate safely in multi-agent workflows.394
- Alicense-qualityAmaintenanceA production-ready MCP server that enables AI assistants to intelligently understand, analyze, edit, navigate, and review software projects with multi-workspace support, Git integration, and semantic search.MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors β no code.
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/ankur-gaurav161418/omniforge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server