Specifai MCP Server
MCP server to provide Specifai project requirements, task, etc. to any AI tools supporting MCP such as Hai Build, Cursor.
Overview
Specifai MCP Server is a Model Context Protocol (MCP) server designed to facilitate integration and automation for the Specifai project with any MCP-compatible AI tools. It allows users to access and manage project requirements and tasks efficiently.
To use the Specifai MCP Server, install it via npm using the command: npx --yes @presidio-dev/specifai-mcp-server@latest. After installation, configure your project by creating a .specifai-path file that points to your project directory containing specification documents.
- Tool agnostic: Works with any MCP-compatible AI tool. - Provides access to various project documents such as Business Requirement Documents (BRDs), Product Requirement Documents (PRDs), and User Stories. - Allows setting and changing of project directory paths for easier access.
- Automating the retrieval of project requirements for AI tools.
- Integrating with IDEs like Hai Build and Cursor for seamless project management.
- Managing and organizing project documentation efficiently.
Add to your AI client
Use these steps to connect Specifai MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"specifai-mcp-server-presidio-oss": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-specifai-mcp-server-presidio-oss"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"specifai-mcp-server-presidio-oss": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-specifai-mcp-server-presidio-oss"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"specifai-mcp-server-presidio-oss": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-specifai-mcp-server-presidio-oss"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"specifai-mcp-server-presidio-oss": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-specifai-mcp-server-presidio-oss"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"specifai-mcp-server-presidio-oss": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-specifai-mcp-server-presidio-oss"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"specifai-mcp-server-presidio-oss": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-specifai-mcp-server-presidio-oss"
]
}
}
}FAQ
Is Specifai MCP Server free to use?
Yes! Specifai MCP Server is open-source and free to use.
What are the system requirements?
You need Node.js version 16.0.0 or higher, or Bun version 1.0.0 if using Bun runtime.
Can I contribute to the project?
Yes! Contributions are welcome. Please refer to the Contributing Guide in the repository for more information.