MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
© 2026 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Sequa MCP MCP
Sequa MCP MCP Logo

Sequa MCP MCP

Model Context Protocol Integration

Overview

Stop stitching context for Copilot and Cursor. With Sequa MCP, your AI tools know your entire codebase and docs out of the box.

# Sequa.AI

Stop stitching context for Copilot and Cursor. With Sequa MCP, your AI tools know your entire codebase and docs out of the box.

Installation Instructions


README: https://github.com/sequa-ai/sequa-mcp

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:

  1. Create / sign in to your Sequa account at https://app.sequa.ai/login.
  2. Setup a Project inside the Sequa app.
  3. Inside that project, locate the MCP Setup URLs and select the transport your AI agent supports.
  4. 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.


🤔 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-assistant

Replace 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-assistant

Augment Code

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"
      ]
    }
  }
}

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.