Add MCP server bridge for Cursor integration#2
Merged
Conversation
Creates a stdio-based MCP server that bridges Cursor to the deployed CTO Eleven API without modifying the app. Exposes 21 tools including GitHub ops, file management, git operations, web search, terminal, chat, and full-stack workflow. https://claude.ai/code/session_01Qp2SMJThi4ZYTnQgPFL8kq
Change /node_modules (root only) to node_modules/ so nested directories like mcp-server/node_modules are also ignored. https://claude.ai/code/session_01Qp2SMJThi4ZYTnQgPFL8kq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a standalone Model Context Protocol (MCP) server that bridges Cursor with the deployed CTO Eleven API, enabling AI-assisted development workflows directly within the Cursor editor.
Key Changes
New MCP Server (
mcp-server/server.mjs): Implements a complete MCP server with 20+ tools covering:Package Configuration (
mcp-server/package.json): Defines dependencies on MCP SDK and Zod for schema validationCursor Configuration (
.cursor/mcp.json): Provides MCP server configuration template for Cursor with environment variable placeholders forBASE_URLandGITHUB_TOKENBuild Configuration: Updated
.gitignoreto use standardnode_modules/patternImplementation Details
BASE_URL,GITHUB_TOKEN)https://claude.ai/code/session_01Qp2SMJThi4ZYTnQgPFL8kq