drio
Open app

DemiCode

Source

Ringkasan tentang awesome-mcp-servers - koleksi server Model Context Protocol (MCP)

Catalog onlyCatalog onlySTDIO

Overview

DemiCode is a curated collection of Model Context Protocol (MCP) servers, allowing AI models to interact securely with local and remote resources through standardized server implementations.

To use DemiCode, explore the repository on GitHub, where you can find various implementations of MCP servers in different programming languages and categories.

  • Collection of various MCP server implementations - Supports multiple programming languages including Python, TypeScript, Go, Rust, C#, and Java - Categorized services for local and cloud applications
  1. Automating browser tasks using local services.
  2. Integrating with external APIs for cloud-based applications.
  3. Utilizing database connections for AI model interactions.

Add to your AI client

Use these steps to connect DemiCode 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": {
    "demicode-greenrush21": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-demicode-greenrush21"
      ]
    }
  }
}

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": {
    "demicode-greenrush21": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-demicode-greenrush21"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "demicode-greenrush21": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-demicode-greenrush21"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "demicode-greenrush21": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-demicode-greenrush21"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "demicode-greenrush21": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-demicode-greenrush21"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "demicode-greenrush21": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-demicode-greenrush21"
      ]
    }
  }
}

FAQ

What is MCP?

MCP (Model Context Protocol) is an open protocol that enables AI models to interact securely with local and remote resources.

How can I contribute to DemiCode?

You can contribute by following the contribution guidelines that will be added later in the repository.

What programming languages are supported?

DemiCode supports various languages including Python, TypeScript, Go, Rust, C#, and Java.

DemiCode MCP Server — MCP Registry