Skip to main content

eno-mcp — MCP stdio server exposing the vault's read tools to coding agents

Project description

eno-mcp

MCP stdio server exposing eno's read + write tools to coding agents and autonomous agents (Claude Code, Cursor, anything that speaks MCP). It gives an MCP client a structural view of an Obsidian vault; the intelligence is the calling agent — no model setup of eno's own required.

Install

pip install eno-mcp

Requires Python 3.12+. Pulls in the enowiki core (which imports as eno). The server exposes the tools over stdio; you wire it into your agent's MCP config (below).

Tools

Read:

  • eno_search — find notes by title or tag
  • eno_note — frontmatter + headings + ~400-char excerpt for one note
  • eno_neighbors — backlinks + outbound for one note
  • eno_orphans — notes with no inbound links (resurfacing)
  • eno_stubs — short notes with no outbound links
  • eno_stale — notes past a recency threshold
  • eno_frontier — pages actively reaching outward (high out-degree, low in-degree, recent)
  • eno_hot — session-start "what's hot" bundle (frontier + recent + concepts + your recent notes)
  • eno_broken_links — raw broken wikilinks (use eno_concepts / eno_drift instead for classified output)
  • eno_concepts — incipient wikilinks (groundwork for not-yet-written notes)
  • eno_drift — drift candidates (almost-matches, real bugs)
  • eno_tiling — body-content semantic dedup (needs the core's enowiki[llm] extra)
  • eno_hygiene — frontmatter contract violations
  • eno_health — diagnostic

Write:

  • eno_create_note — create a note; frontmatter auto-populated with origin: llm + author: '[[X]]'
  • eno_append_to_note — append content, optionally under a specific heading

Wiring it into an MCP agent

Many autonomous agents load MCP servers natively. Two pieces:

1. Onboarding skill. Drop the agent brief into a place the agent loads from at startup (skill directory, system prompt path, etc.). The brief ships in this repo at skills/agent-onboarding.md.

# Whichever of these matches your agent's setup:
cp skills/agent-onboarding.md \
   ~/.config/my-agent/skills/

# or, if you sync skills via the vault:
cp skills/agent-onboarding.md \
   /path/to/vault/.eno/skills/

The onboarding brief covers the postures (resurfacing > collecting, incipient links are intentional, two-phase reads), the tool inventory, and common patterns. Self-contained. Read it yourself before deploying — it's the contract the agent will operate under.

2. MCP config. Add eno-mcp to the agent's MCP config — typically ~/.config/my-agent/mcp.json or whatever your install expects. If you installed with pip install eno-mcp, the command is simply eno-mcp (with "args": []); the examples below use uv run --directory for running against a source checkout.

{
  "mcpServers": {
    "eno": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/path/to/eno",
        "eno-mcp"
      ],
      "env": {
        "ENO_VAULT_DIR": "/path/to/vault",
        "ENO_AGENT_NAME": "Weaver"
      }
    }
  }
}

Or, if you prefer the agent to talk to a long-running eno-serve daemon on a shared host (so multiple agents share one index):

{
  "mcpServers": {
    "eno": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/eno", "eno-mcp"],
      "env": {
        "ENO_SERVICE_URL": "http://your-host:7891",
        "ENO_AGENT_NAME": "Weaver"
      }
    }
  }
}

ENO_AGENT_NAME=Weaver is what makes new notes get author: '[[Weaver]]' automatically — the AGENTS.md convention that keeps provenance legible without per-call ceremony.

Wiring it into other agents

Claude Code (project-level): the repo's own .mcp.json already wires this for sessions opened inside /eno. To get it in every Claude Code session, copy that snippet into ~/.claude/.mcp.json.

Other MCP-compatible agents (Cursor, openclaw, custom): same shape — spawn eno-mcp over stdio with the env vars above.

Backend choice

The server picks a backend at runtime:

  • $ENO_SERVICE_URL set → ServiceBackend (HTTP to a running eno-serve)
  • otherwise → LocalBackend (direct sqlite at $ENO_VAULT_DIR/.eno/index.db)

Single-host work: omit ENO_SERVICE_URL, set ENO_VAULT_DIR. Multi-host fleet: run eno-serve on a shared host and point all workstation agents at it via ENO_SERVICE_URL.

Two postures encoded in the tool docstrings

Every tool's docstring is the description an agent sees. Two postures are deliberately repeated across tools and worth keeping in mind when extending:

  1. Resurfacing > collecting. Orphans, stale notes, and concept candidates are framed as opportunities, not errors. Tools never tell the agent to "fix" or "clean up" these.
  2. Incipient links are intentional. eno_broken_links returns raw data; eno_concepts separates intentional groundwork from drift. Agents must never describe concepts as broken-link bugs.

If you add a tool that touches link integrity or vault structure, match this framing.

License

MIT — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eno_mcp-0.1.1.tar.gz (16.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eno_mcp-0.1.1-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file eno_mcp-0.1.1.tar.gz.

File metadata

  • Download URL: eno_mcp-0.1.1.tar.gz
  • Upload date:
  • Size: 16.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for eno_mcp-0.1.1.tar.gz
Algorithm Hash digest
SHA256 501fef925ae6f22fce23194ccdfd57cffed968e6bac2d73c7816b5e4146b2a7b
MD5 b52d701c758259047acb4a707f0d64f2
BLAKE2b-256 48da009a09de93a06f42c9c76efcc49051e2646b5e2580731fb86859729494c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for eno_mcp-0.1.1.tar.gz:

Publisher: publish.yml on lavallee/eno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eno_mcp-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: eno_mcp-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for eno_mcp-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9792201719d2857cf41a0cf70108dd809500e92d0c4b81130685f698d062cb47
MD5 e77606f652e09ff95d2e1e001436275d
BLAKE2b-256 bd1dc0a5072e5ab9fbac813d3b6d2d7ab074783b755055229b5c505516c71061

See more details on using hashes here.

Provenance

The following attestation bundles were made for eno_mcp-0.1.1-py3-none-any.whl:

Publisher: publish.yml on lavallee/eno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page