dt1-mcp-server

sid027/dt1-mcp-server

3.1

If you are the rightful owner of dt1-mcp-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 MCP Server is a configuration setup for running model context protocol servers locally and remotely, facilitating seamless integration and communication between different services.

MCP Server

MCP Server Configuration for Claude Desktop

Locally (Mac)

{
    "mcpServers": {
        "weather": {
          "command": "uv",
          "args": ["run", "--directory", "/Users/singhsiddhartha/Projects/mcp-server-python/", "python3", "service.py"],
          "env": {
            "SSL_VERIFY": "false"
          }
        }
    }
}

(Windows)

{
	"mcpServers": {
                "weather": {
                        "command": "uv",
                        "args": ["--directory", "C:\\Users\\sid\\Projects\\dt1-mcp-server\\", "run", "service.py"],
                        "env": {
                                "SSL_VERIFY": "false"
                        }
                }
        }
}

Remotely

{
    "mcpServers": {
        "weather": {
          "command": "uv",
          "args": ["run", "--directory", "/Users/singhsiddhartha/Projects/mcp-server-python/", "python3", "service.py"],
          "env": {
            "SSL_VERIFY": "false"
          }
        },
        "weather-remote": {
          "command": "npx",
          "args": [
            "mcp-remote",
            "http://34.65.149.151:8000/mcp",
            "--allow-http"
          ],
          "env": {
            "MCP_ACCEPT": "application/json, text/event-stream"
          }
        }
    }
}