mcp-local-server

fancier21/mcp-local-server

3.1

If you are the rightful owner of mcp-local-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The Model Context Protocol (MCP) server is a customizable server configuration that allows for the execution of local scripts and commands to manage and interact with various development environments.

Context Servers Configuration

Local MCP Server - Zed configuration

{
  "context_servers": {
    "mcp-local-server": {
      "enabled": true,
      "source": "custom",
      "command": "uv",
      // "command": "/home/f/.local/bin/uv",
      "args": ["run", "/home/f/Dev/MCPs/mcp-local-server/main.py"],
      "env": {}
    }
  }
}

Local MCP Server - Zed configuration with run script

{
  "context_servers": {
    "mcp-local-server": {
      "enabled": true,
      "source": "custom",
      "command": "/bin/bash",
      "args": ["/home/f/Dev/MCPs/mcp-local-server/run.sh"],
      "env": {}
    }
  },

Local MCP Server - Cloude Desktop / Cursor configuration with run script

{
  "mcpServers": {
    "mcp-local-server": {
      "command": "/home/f/Dev/MCPs/mcp-local-server/run.sh",
      "args": [],
      "env": {}
    }
  }
}