drio
Open app

MCP Continuity Server (Versão Simplificada)

Source

Versão corrigida do MCP Continuity Server compatível com SDK 1.7.0

Catalog onlyCatalog onlySTDIO

Overview

MCP Continuity Server is a simplified server for managing continuity and state in projects, based on the MCP Continuity Tool. This version is compatible with SDK version 1.7.0.

To use the MCP Continuity Server, you can install it globally using npm or run it with npx. Configuration is required for integration with Claude Desktop.

  • Initializes project state based on a repository. - Loads the current state of a project. - Updates specific fields in the project state. - Analyzes repository structure for insights. - Generates optimized prompts for development continuity.
  1. Managing project states in software development.
  2. Analyzing repository structures for better project management.
  3. Generating continuity prompts to aid in ongoing development tasks.

Add to your AI client

Use these steps to connect MCP Continuity Server (Versão Simplificada) in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-continuity-server-fixed-lucasdoreac": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-continuity-server-fixed-lucasdoreac"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-continuity-server-fixed-lucasdoreac": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-continuity-server-fixed-lucasdoreac"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-continuity-server-fixed-lucasdoreac": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-continuity-server-fixed-lucasdoreac"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-continuity-server-fixed-lucasdoreac": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-continuity-server-fixed-lucasdoreac"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-continuity-server-fixed-lucasdoreac": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-continuity-server-fixed-lucasdoreac"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-continuity-server-fixed-lucasdoreac": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-continuity-server-fixed-lucasdoreac"
      ]
    }
  }
}

FAQ

What are the prerequisites for using MCP Continuity Server?

Node.js 18+ and npm or npx are required.

How do I install MCP Continuity Server?

You can install it globally using `npm install -g @lucasdoreac/mcp-continuity-server`.

Can I run MCP Continuity Server as a web server?

Yes, you can start it as an HTTP server using `node src/index.js server`.