Self Maintaining Docs for Devs & AI — Turn your codebase into always-current documentation, so engineers and AI never read outdated docs again. This repository is the entry point for using Sequa via the Model Context Protocol (MCP). Add Sequa as an MCP server to Cursor, Claude, Windsurf, VSCode, Cline, Highlight, Augment, or any other MCP‑capable client. 70% of docs are never updated as underlying
Add this skill
npx mdskills install sequa-ai/sequa-mcpProvides comprehensive setup instructions for integrating Sequa's knowledge engine across multiple AI tools
1# Sequa MCP23**Self Maintaining Docs for Devs & AI** — Turn your codebase into always-current documentation, so engineers and AI never read outdated docs again.45This repository is the **entry point for using Sequa via the Model Context Protocol (MCP)**. Add Sequa as an MCP server to Cursor, Claude, Windsurf, VSCode, Cline, Highlight, Augment, or any other MCP‑capable client.67---89## 🤔 What is Sequa?101170% of docs are never updated as underlying facts change, and 30% of dev time is lost searching, handling interruptions, and reworking. Documentation drifts out of sync, knowledge gets scattered across tools, and experts repeat themselves. The result: onboarding slows, context is lost, and teams waste time chasing answers instead of building.1213**Sequa fixes this.** It's a Contextual Knowledge Engine that:1415* **Generates docs that stay accurate** — architecture overviews, API docs, runbooks, onboarding guides16* **Continuously updates from your code** — eliminating stale pages and manual upkeep17* **Unifies knowledge across repositories** — no more hunting across Confluence, Slack, and GitHub18* **Powers your team and AI agents** — ask in plain language, get current answers with source links1920### Why use Sequa MCP?2122Stop stitching context for Copilot and Cursor. With Sequa MCP, your AI tools know your entire codebase and docs out of the box.2324Sequa gives your AI assistants deep, real-time knowledge of your codebase, docs, tickets, and internal standards. Instead of writing code you have to fix, they write code that fits — first try.2526---2728## 🧱 Prerequisites2930Before you configure *any* AI agent:31321. **Create / sign in to your Sequa account** at **[https://app.sequa.ai/login](https://app.sequa.ai/login?ref=sequa-mcp)**332. **Setup a Project** inside the Sequa app343. Inside that project, locate the **MCP Setup URLs** and select the transport your AI agent supports354. **Copy the URL or configuration** and install it in your client3637> ❗ *If you skip project creation the MCP server will refuse connections — the proxy can launch but you will receive auth / project errors.*3839---4041## 🚀 Quick Start (Proxy Launch)4243### NPX (most common)4445```bash46npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistant47```4849> Replace the URL if you use an endpoint from the specific project5051---5253## 🔌 IDE / Tool Configuration5455### Cursor (`~/.cursor/mcp.json`)5657```json58{59 "mcpServers": {60 "sequa": {61 "url": "https://mcp.sequa.ai/v1/setup-code-assistant"62 }63 }64}65```6667### Claude Desktop (Settings → Developer → *Edit Config*)6869```json70{71 "mcpServers": {72 "sequa": {73 "command": "npx",74 "args": [75 "-y",76 "@sequa-ai/sequa-mcp@latest",77 "https://mcp.sequa.ai/v1/setup-code-assistant"78 ]79 }80 }81}82```8384### Windsurf (`~/.codeium/windsurf/mcp_config.json`)8586```json87{88 "mcpServers": {89 "sequa": {90 "command": "npx",91 "args": [92 "-y",93 "@sequa-ai/sequa-mcp@latest",94 "https://mcp.sequa.ai/v1/setup-code-assistant"95 ]96 }97 }98}99```100101### VS Code (`.vscode/mcp.json`)102103```json104{105 "servers": {106 "sequa": {107 "command": "npx",108 "args": [109 "-y",110 "@sequa-ai/sequa-mcp@latest",111 "https://mcp.sequa.ai/v1/setup-code-assistant"112 ]113 }114 }115}116```117118### Cline / Claude Dev Tools (`cline_mcp_settings.json`)119120```json121{122 "mcpServers": {123 "sequa": {124 "command": "npx",125 "args": [126 "-y",127 "@sequa-ai/sequa-mcp@latest",128 "https://mcp.sequa.ai/v1/setup-code-assistant"129 ],130 "disabled": false,131 "autoApprove": []132 }133 }134}135```136137### Highlight AI (GUI → Plugins → Custom Plugin → *Add using a command*)138139```bash140npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistant141```142143### Augment Code144145```bash146npx -y @sequa-ai/sequa-mcp@latest https://mcp.sequa.ai/v1/setup-code-assistant147```148149Or `augment_config.json`:150151```json152{153 "mcpServers": {154 "sequa": {155 "command": "npx",156 "args": [157 "-y",158 "@sequa-ai/sequa-mcp@latest",159 "https://mcp.sequa.ai/v1/setup-code-assistant"160 ]161 }162 }163}164```165166
Full transparency — inspect the skill content before installing.