OpenSpec MCP Server
Connects OpenSpec specification system to AI coding assistants, enabling automated spec-driven development workflows.
README
OpenSpec MCP Server (AI Assistant Plugin)
Welcome! This is a simple bridge (plugin) that connects OpenSpec to your favorite AI coding assistant (like IBM Bob, Codex, or Claude Desktop).
What is this and why do I need it?
When you want your AI to build a new feature, you usually just type it into the chat. But as projects grow, the AI can forget things, get confused, or write messy code.
OpenSpec is a system that solves this. It forces the AI to create a clear "specification" (a plan) before it writes any code. It organizes your plan into neat folders (proposal, design, tasks) so you can review it.
However, your AI doesn't automatically know how to use OpenSpec. That is what this server does! It gives your AI the "tools" it needs to automatically create these folders, list tasks, and mark them as complete as it writes code for you.
How to Connect Your AI
To use this, you need to tell your AI assistant where this server is located. The setup simply depends on which AI assistant you use.
Option 1: Connecting to IBM Bob
If you are using IBM Bob:
- In the IBM Bob IDE, click the three dots next to the gear icon in the upper right corner of the chat window and select MCP servers.
- Click Open next to "Global MCPs" to edit your settings file (usually saved at
~/.bob/settings/mcp_settings.json). - Add the
openspecserver to themcpServersobject:
{
"mcpServers": {
"openspec": {
"command": "npx",
"args": [
"-y",
"@igor-olikh/openspec-mcp-server"
]
}
}
}
- Save the file and restart IBM Bob!
Option 2: Connecting to Codex
Codex has a built-in user interface to easily add these plugins. You can add it quickly by running this terminal command:
codex mcp add openspec-server npx -y @igor-olikh/openspec-mcp-server
Or, manually through the Codex User Interface:
- Open the "Connect to a custom MCP" box in Codex.
- Name:
openspec - Mode: Leave as
STDIO - Command to launch:
npx - Arguments: Click
+ Add argumenttwice and paste exactly:- First argument:
-y - Second argument:
@igor-olikh/openspec-mcp-server
- First argument:
- Working directory: Leave this blank! (This allows Codex to dynamically use OpenSpec inside whichever project you currently have open).
- Save it!
Option 3: Connecting to Claude Desktop App
If you prefer using the Claude Desktop application:
- Open your Claude configuration file (usually located at
~/Library/Application Support/Claude/claude_desktop_config.jsonon Mac). - Add the
openspecserver to it:
{
"mcpServers": {
"openspec": {
"command": "npx",
"args": [
"-y",
"@igor-olikh/openspec-mcp-server"
]
}
}
}
- Save the file and restart Claude Desktop.
How do I use it?
Once connected, you don't need to do anything technical. You just talk to your AI like normal, but ask it to use OpenSpec!
Example Chat Prompts:
- "Hey Bob, I want to add a dark mode feature to this application. Please use OpenSpec to propose and validate it."
- "What is the OpenSpec status of our current project?"
- "List all the OpenSpec changes we are currently working on."
The AI will automatically use the tools below to handle the rest!
For Developers (Under the Hood)
This server exposes the official @fission-ai/openspec CLI commands as Model Context Protocol (MCP) JSON-RPC tools.
Available AI Tools:
openspec_init: Starts OpenSpec in a project.openspec_new_change: Creates a folder for a new feature proposal.openspec_status: Checks how much of the feature is done.openspec_validate: Checks if the code matches the plan.openspec_archive: Marks the feature as 100% completed.openspec_list: Shows all current tasks.openspec_show: Reads a specific task.openspec_update: Updates OpenSpec rules.openspec_instructions: Reads AI instructions for building parts of the plan.openspec_read_file: Reads any spec artifact directly by name and file type — much faster thanshow, no subprocess overhead.openspec_refresh_cache: Force-refreshes the cached directory listing if files changed outside OpenSpec tools.
Built-in Prompts:
openspec_kickoff: A pre-made prompt that steers the AI into a strict spec-driven workflow from the first turn. Automatically injected when supported by the AI assistant.
Development Setup
If you want to modify this server's code:
npm install(Installs dependencies)npm run build(Compiles the code)npm run start(Runs the server to test standard input/output)
Recent Changes
- Built-in MCP Prompts: The
openspec_kickoffprompt automatically steers your AI into a strict spec-driven workflow from the first turn. - Direct File Readers with In-Memory Cache: New
openspec_read_filetool reads spec artifacts directly via the filesystem, bypassing CLI subprocess overhead. An in-memory cache of the directory structure serveslistqueries in under 1ms. Cache auto-refreshes after any mutating operation.
Upcoming Features (Planned via OpenSpec)
- Structured JSON Outputs: Replacing raw terminal output with parsed JavaScript objects, preventing the AI from misreading states and reducing hallucinations.
- Smart Error Handling: Coaching the LLM when OpenSpec validations fail (e.g. intercepting terminal errors to output: "Hey, you forgot the 'Tasks' header in design.md").
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。