Cover image
Try Now
2025-03-04

Ce référentiel contient des exemples d'implémentations de serveurs de protocole de contexte de modèle (MCP) qui peuvent être utilisés avec le curseur IDE pour améliorer les capacités d'IA avec des outils personnalisés et des sources de données.

3 years

Works with Finder

1

Github Watches

2

Github Forks

1

Github Stars

Cursor Model Context Protocol (MCP) Example

This repository contains example implementations of Model Context Protocol (MCP) servers that can be used with Cursor IDE to enhance AI capabilities with custom tools and data sources.

What is the Model Context Protocol?

The Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to Large Language Models (LLMs). It allows you to create custom tools that can be used by AI assistants in Cursor.

Think of MCP like a USB-C port for AI applications:

  • Just as USB-C provides a standardized way to connect your devices to various peripherals, MCP provides a standardized way to connect AI models to different data sources and tools
  • It enables AI assistants to access real-time information, execute specialized functions, and enhance their capabilities beyond their training data

Project Structure

example-mcp/
├── mcp-servers/                # Different MCP server implementations
│   ├── task-manager/           # Task manager MCP server example
│   ├── file-explorer/          # File explorer MCP server example
│   └── weather-service/        # Weather service MCP server example
├── client-examples/            # Example code for testing MCP servers
├── docs/                       # Additional documentation
└── README.md                   # This file

MCP Server Examples

This repository includes several example MCP servers:

1. Task Manager MCP Server

A simple MCP server that provides tools for managing tasks:

  • Create new tasks
  • List all tasks
  • Mark tasks as completed
  • Delete tasks

2. File Explorer MCP Server

An MCP server that allows browsing and manipulating files:

  • List files in a directory
  • Read file contents
  • Create new files
  • Delete files

3. Weather Service MCP Server

An MCP server that provides weather information:

  • Get current weather for a location
  • Get weather forecast for a location
  • Get historical weather data

Getting Started

Prerequisites

Setting Up an MCP Server

  1. Navigate to one of the server directories:

    cd example-mcp/mcp-servers/task-manager
    
  2. Install dependencies:

    npm install
    
  3. Start the server:

    npm start
    

Connecting to Cursor

To connect your MCP server to Cursor:

  1. Open Cursor IDE
  2. Go to Settings (gear icon in the bottom left)
  3. Navigate to the "Features" section
  4. Scroll down to "MCP"
  5. Click "Add New MCP Server"
  6. Enter a name for your server (e.g., "Task Manager MCP")
  7. Choose the transport type:
    • SSE: Enter the URL of your MCP server (e.g., http://localhost:3000)
    • Stdio: Enter the command to start your server (e.g., node /path/to/example-mcp/mcp-servers/task-manager/index.js)
  8. Click "Add"

Using MCP Tools in Cursor

Once your MCP server is connected, you can use it in Cursor's AI features:

  1. Open the AI chat panel (Cmd+I or Ctrl+I)

  2. Ask the AI to use your MCP tools:

    Please create a new task titled "Implement user authentication" with the description "Add user login and registration functionality to the application."
    
  3. The AI will use your MCP server to create the task and respond with the result

  4. You can also ask for a list of tasks:

    Show me all the current tasks in the task manager.
    

MCP Architecture

The Model Context Protocol follows a client-server architecture:

  • MCP Hosts: Programs like Cursor IDE that want to access data through MCP
  • MCP Clients: Protocol clients that maintain connections with servers
  • MCP Servers: Lightweight programs that expose specific capabilities through the standardized Model Context Protocol
  • Local Data Sources: Your computer's files, databases, and services that MCP servers can securely access
  • Remote Services: External systems available over the internet that MCP servers can connect to

Transports

MCP supports multiple transport mechanisms:

  1. Stdio transport:

    • Uses standard input/output for communication
    • Ideal for local processes
  2. HTTP with SSE transport:

    • Uses Server-Sent Events for server-to-client messages
    • HTTP POST for client-to-server messages

All transports use JSON-RPC 2.0 to exchange messages.

Creating Your Own MCP Server

To create your own MCP server:

  1. Create a new directory for your server

  2. Initialize a Node.js project:

    npm init -y
    
  3. Install required dependencies:

    npm install @modelcontextprotocol/server express
    
  4. Create an index.js file with your server implementation

  5. Register tools with names, descriptions, and parameter schemas

  6. Implement handlers for each tool

  7. Set up an Express server and apply the MCP middleware

See the example servers in this repository for reference implementations.

Troubleshooting

If you encounter issues with your MCP server:

  1. Check server logs for any errors
  2. Verify the server is running and accessible at the specified URL
  3. Restart Cursor if the connection status doesn't update
  4. Check Cursor's logs for any connection errors (Help > Toggle Developer Tools)

Resources

License

This project is licensed under the MIT License - see the LICENSE file for details.

相关推荐

  • NiKole Maxwell
  • I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Khalid kalib
  • Write professional emails

  • https://tovuti.be
  • Oede knorrepot die vasthoudt an de goeie ouwe tied van 't boerenleven

  • ANGEL LEON
  • A world class elite tech co-founder entrepreneur, expert in software development, entrepreneurship, marketing, coaching style leadership and aligned with ambition for excellence, global market penetration and worldy perspectives.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • Gil kaminski
  • Make sure you are post-ready before you post on social media

  • INFOLAB OPERATIONS 2
  • A medical specialist offering assistance grounded in clinical guidelines. Disclaimer: This is intended for research and is NOT safe for clinical use!

  • apappascs
  • Découvrez la collection la plus complète et la plus à jour de serveurs MCP sur le marché. Ce référentiel sert de centre centralisé, offrant un vaste catalogue de serveurs MCP open-source et propriétaires, avec des fonctionnalités, des liens de documentation et des contributeurs.

  • ShrimpingIt
  • Manipulation basée sur Micropython I2C de l'exposition GPIO de la série MCP, dérivée d'Adafruit_MCP230XX

  • OffchainLabs
  • Aller la mise en œuvre de la preuve de la participation Ethereum

  • huahuayu
  • Une passerelle API unifiée pour intégrer plusieurs API d'explorateur de blockchain de type étherscan avec la prise en charge du protocole de contexte modèle (MCP) pour les assistants d'IA.

  • deemkeen
  • Contrôlez votre MBOT2 avec un combo d'alimentation: MQTT + MCP + LLM

  • zhaoyunxing92
  • 本项目是一个钉钉 MCP (Protocole de connecteur de message) 服务 , 提供了与钉钉企业应用交互的 API 接口。项目基于 Go 语言开发 , 支持员工信息查询和消息发送等功能。

  • pontusab
  • La communauté du curseur et de la planche à voile, recherchez des règles et des MCP

    Reviews

    1 (1)
    Avatar
    user_RFVECuox
    2025-04-15

    Remote MCP Server on Cloudflare by cnndabbler is an outstanding service for anyone needing a reliable and secure server solution. The seamless integration with Cloudflare ensures excellent performance and protection. Easy to set up and use, this product is perfect for both beginners and advanced users. Highly recommend! Check it out at https://mcp.so/server/remote-mcp-server/cnndabbler.