mcp-server-python-functions

mcp-server-python-functions

0

My MCP Server is designed to be integrated with MCP clients to facilitate various command executions. It emphasizes ease of setup and configurability through environment variables and dependency management.

My MCP Server

Installation

Requirements

  • (Technically optional) just for easy command execution

Install gems

just install

Set environment variables

cp .env.template .env

and add all necessary values

Add to MCP Client

Claude
{
  "mcpServers": {
    "my_mcp_server": {
      "command": "just",
      "args": [
        "-f",
        "/absolute/path/to/my-mcp-server/Justfile",
        "run"
      ]
    }
  }
}