Sequa MCP
OfficialClick on "Deploy 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., "@Sequa MCPexplain the authentication flow in our backend services"
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.
Sequa MCP
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.
🧱 Prerequisites (Read First!)
Before you configure any AI agent:
Create / sign in to your Sequa account at https://app.sequa.ai/login.
Setup a Project inside the Sequa app.
Inside that project, locate the MCP Setup URLs and select the transport your AI agent supports.
Copy the URL or configuration and install it in your client.
❗ If you skip project creation the MCP server will refuse connections — the proxy can launch but you will receive auth / project errors.
Related MCP server: Codebase Context
🤔 What is Sequa?
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:
Execute architecture aware & cross‑repo tasks
Understand project goals and state
Generate more accurate production ready code
Centralize AI coding rules and best practices
🚀 Quick Start (Proxy Launch)
NPX (most common)
npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistantReplace the URL if you use an endpoint from the specific project
🔌 IDE / Tool Configuration
Cursor (~/.cursor/mcp.json)
{
"mcpServers": {
"sequa": {
"url": "https://mcp.sequa.ai/v1/setup-code-assistant"
}
}
}Claude Desktop (Settings → Developer → Edit Config)
{
"mcpServers": {
"sequa": {
"command": "npx",
"args": [
"-y",
"@sequa-ai/sequa-mcp@latest",
"https://mcp.sequa.ai/v1/setup-code-assistant"
]
}
}
}Windsurf (~/.codeium/windsurf/mcp_config.json)
{
"mcpServers": {
"sequa": {
"command": "npx",
"args": [
"-y",
"@sequa-ai/sequa-mcp@latest",
"https://mcp.sequa.ai/v1/setup-code-assistant"
]
}
}
}VS Code (.vscode/mcp.json)
{
"servers": {
"sequa": {
"command": "npx",
"args": [
"-y",
"@sequa-ai/sequa-mcp@latest",
"https://mcp.sequa.ai/v1/setup-code-assistant"
]
}
}
}Cline / Claude Dev Tools (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": []
}
}
}Highlight AI (GUI → Plugins → Custom Plugin → Add using a command)
npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistantAugment Code
npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistantOr augment_config.json:
{
"mcpServers": {
"sequa": {
"command": "npx",
"args": [
"-y",
"@sequa-ai/sequa-mcp@latest",
"https://mcp.sequa.ai/v1/setup-code-assistant"
]
}
}
}This server cannot be deployed
Maintenance
Related MCP Connectors
Shared, permission-aware company context for AI agents, with provenance, approvals and audit.
Intelligent context infrastructure for AI teams: knowledge graph, sessions, tasks, documents.
Codebase intelligence for AI agents — dead code, blast radius, ownership.
Code intelligence platform for AI agents. 20 tools for architecture, security & impact analysis.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceStop stitching context for Copilot and Cursor. With Sequa MCP, your AI tools know your entire codebase and docs out of the box.15 npm21MIT
- AlicenseAqualityAmaintenanceProvides AI assistants with real-time visibility into your codebase's internal libraries, team patterns, naming conventions, and usage frequencies to generate code that matches your team's actual practices.11130 npm63Elastic 2.0
- AlicenseAqualityDmaintenanceEnables AI coding assistants to access grounded, branch-scoped codebase context via semantic search, git tracking, change ledger, and structured feature management with Project Tracks.191MIT
- AlicenseNot gradedqualityBmaintenanceProvides AI coding assistants with deep, semantic understanding of local codebases via AST-aware chunking, cross-repo symbol graphs, and architectural memory, enabling context-aware code search and dependency tracing.11MIT