npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sequa-ai/sequa-mcp

v1.1.2

Published

A proxy for the Model Context Protocol (MCP) that connects local STDIO with remote MCP servers

Readme

Sequa MCP

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.


🤔 What is Sequa?

70% 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.

Sequa fixes this. It's a Contextual Knowledge Engine that:

  • Generates docs that stay accurate — architecture overviews, API docs, runbooks, onboarding guides
  • Continuously updates from your code — eliminating stale pages and manual upkeep
  • Unifies knowledge across repositories — no more hunting across Confluence, Slack, and GitHub
  • Powers your team and AI agents — ask in plain language, get current answers with source links

Why use Sequa MCP?

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

Sequa 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.


🧱 Prerequisites

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.


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