Sequa
STDIOSTREAMABLE HTTPOfficialMCP server bridging STDIO/command transports with Sequa's contextual knowledge engine for AI coding assistants
MCP server bridging STDIO/command transports with Sequa's contextual knowledge engine for AI coding assistants
This repository is the entry point for using Sequa via the Model Context Protocol (MCP). If you arrived here looking to "add Sequa as an MCP server" to Cursor, Claude, Windsurf, VSCode, Cline, Highlight, Augment, or any other MCP‑capable client — you are in the right place.
It gives you a single drop‑in command that bridges STDIO/command MCP transports used by many IDEs today with Sequa’s native streamable HTTP MCP endpoint.
Before you configure any AI agent:
❗ If you skip project creation the MCP server will refuse connections — the proxy can launch but you will receive auth / project errors.
Sequa is a Contextual Knowledge Engine that unifies code, documentation and more across multiple repositories and continuously streams that context to any LLM‑powered agent. By injecting deep, current project knowledge, Sequa enables assistants to:
npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistant
Replace the URL if you use an endpoint from the specific project
~/.cursor/mcp.json){ "mcpServers": { "sequa": { "url": "https://mcp.sequa.ai/v1/setup-code-assistant" } } }
{ "mcpServers": { "sequa": { "command": "npx", "args": [ "-y", "@sequa-ai/sequa-mcp@latest", "https://mcp.sequa.ai/v1/setup-code-assistant" ] } } }
~/.codeium/windsurf/mcp_config.json){ "mcpServers": { "sequa": { "command": "npx", "args": [ "-y", "@sequa-ai/sequa-mcp@latest", "https://mcp.sequa.ai/v1/setup-code-assistant" ] } } }
.vscode/mcp.json){ "servers": { "sequa": { "command": "npx", "args": [ "-y", "@sequa-ai/sequa-mcp@latest", "https://mcp.sequa.ai/v1/setup-code-assistant" ] } } }
cline_mcp_settings.json){ "mcpServers": { "sequa": { "command": "npx", "args": [ "-y", "@sequa-ai/sequa-mcp@latest", "https://mcp.sequa.ai/v1/setup-code-assistant" ], "disabled": false, "autoApprove": [] } } }
npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistant
npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistant
Or augment_config.json:
{ "mcpServers": { "sequa": { "command": "npx", "args": [ "-y", "@sequa-ai/sequa-mcp@latest", "https://mcp.sequa.ai/v1/setup-code-assistant" ] } } }