Enoch MCP Server

<strong>Enoch system repo</strong> · <strong>Docs</strong> · <strong>MCP</strong>

Local serverstdioPython

What is the Enoch MCP MCP server?

Enoch MCP MCP server exists for a simple reason — assistants are far more useful when they can act on Enoch MCP directly instead of describing what you should do. Enoch system repo · Docs · MCP.

What you get

  • Registers MCP tools for Enoch control-plane, Dashboard V1, and core endpoints
  • Sends requests to a configured Enoch API URL
  • Adds Authorization: Bearer to API requests using the configured token
  • Returns Enoch API responses to the MCP client
  • Marks read-only tools with MCP read-only annotations
  • Marks mutating tools as non-read-only and adds approval metadata

What the assistant can call

Once Enoch MCP is connected, these are the calls the assistant has available:

  • api_url — worker-gate base URL. Used first for /healthz, /dashboard/api, /dashboard/api/run/{run_id}, and /project-status/{project_id}
  • api_token — worker bearer token. Treated as secret
  • service_name — systemd unit name for service checks and journal tails
  • log_paths — fixed worker-gate log paths that may be tailed

Setting it up

enoch-mcp on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration and credentials

You will need 2 environment variables: ENOCH_API_URL, ENOCH_API_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Python 3.11 or newer - A running Enoch API, normally at http://localhost:8787 - An Enoch API bearer token - An MCP client that can run local stdio servers

Choosing this one

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Enoch MCP's toolset — api_url, api_token, service_name and 1 more — is a fair guide to whether it matches your workflow. It is maintained by alias8818; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the enoch mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
api_urlworker-gate base URL. Used first for /healthz, /dashboard/api, /dashboard/api/run/{run_id}, and /project-status/{project_id}.
api_tokenworker bearer token. Treated as secret.
service_namesystemd unit name for service checks and journal tails.
log_pathsfixed worker-gate log paths that may be tailed.

How to install the Enoch MCP MCP server

{
  "mcpServers": {
    "enoch": {
      "command": "uvx",
      "args": ["enoch-mcp"],
      "env": {
        "ENOCH_API_URL": "your-value",
        "ENOCH_API_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Python 3.11 or newer - A running Enoch API, normally at http://localhost:8787 - An Enoch API bearer token - An MCP client that can run local stdio servers
VariableDescriptionRequired
ENOCH_API_URLEndpoint or connection string the server talks to.Yes
ENOCH_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Enoch MCP to api url.
  • Use Enoch MCP to api token.
  • Use Enoch MCP to service name.

Frequently asked questions

It connects Enoch MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (api_url, api_token, service_name, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Enoch MCP directly.