drio
Open app

Cursor Resources

Source

.cursorrules, MCP and MCP servers, prompts, tips and tricks

Catalog onlyCatalog onlySTDIO

Overview

Cursor Resources is a centralized collection of resources designed to enhance productivity with Cursor, an AI-powered Integrated Development Environment (IDE). It includes prompts, rules, Model Context Protocol (MCP) servers, scripts, and utilities that improve the development experience.

To use Cursor Resources, clone the repository into your Cursor workspace, apply global rules through Cursor Settings, and create project-specific rules in the .cursor/rules directory. Customize prompts and set up MCP servers as needed.

  • Global and project-specific rules for AI behavior customization - Model Context Protocol servers for enhanced context handling - Utility scripts for automation and workflow enhancement - Documentation for architecture planning and tech stack resources
  1. Customizing AI behavior for specific coding styles and workflows.
  2. Enhancing AI understanding of codebases for better code generation.
  3. Automating repetitive tasks and improving development efficiency.

Add to your AI client

Use these steps to connect Cursor Resources 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": {
    "cursor-resources-ample-education": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cursor-resources-ample-education"
      ]
    }
  }
}

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": {
    "cursor-resources-ample-education": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cursor-resources-ample-education"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "cursor-resources-ample-education": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cursor-resources-ample-education"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "cursor-resources-ample-education": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cursor-resources-ample-education"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "cursor-resources-ample-education": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cursor-resources-ample-education"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "cursor-resources-ample-education": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cursor-resources-ample-education"
      ]
    }
  }
}

FAQ

Can I contribute to Cursor Resources?

Yes! Contributions of rules, prompts, or improvements are welcome.

Where can I find the official documentation?

The official documentation is available at [Cursor Official Documentation](https://cursor.sh/docs).

How do I set up project-specific rules?

Create a `.cursor/rules` directory in your project and add rule files with the `.mdc` extension.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":1558,"uuid":"86253a7d-5688-485c-9198-2c53bd090cf2","name":"cursor-resources","title":"Cursor Resources","description":".cursorrules, MCP and MCP servers, prompts, tips and tricks","avatar_url":"https://avatars.githubusercontent.com/u/199652686?v=4","created_at":"2025-02-22T05:04:34.773Z","updated_at":"2025-02-23T07:20:31.779Z","status":"created","author_name":"ample-education","author_avatar_url":"https://avatars.githubusercontent.com/u/199652686?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/ample-education/cursor-resources","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":"{\"star\":\"0\",\"license\":\"\",\"language\":\"Shell\",\"is_official\":false,\"latest_commit_time\":\"2025-02-21 11:34:15\"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

Cursor Resources MCP Server — MCP Registry