This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore(mcp): untrack .mcp.json — machine-local config, path leak

pty is a public repo; PR #46 committed a `.mcp.json` with a
machine-specific absolute path (`/Volumes/SSD/.../coord/bin/st`).
That leaked one of myobie's local paths into public history and the
file isn't portable to any contributor who clones — they don't have
that path on disk.

Matches the smalltalk + transplant conventions: `.mcp.json` is
machine-local config, kept out of git via `.git/info/exclude`
(per-machine, not in .gitignore so the policy doesn't get committed).

The on-disk file is preserved — the agent's running MCP server reads
it on next session start as before. Future contributors set up their
own `.mcp.json` per-machine.

History note: the absolute path is still in older commits on `main`.
That's a benign disclosure (one filesystem layout, no secrets), so
no history rewrite — only future commits stop carrying the leak.

Nathan Herald (Jun 29, 2026, 10:16 AM +0200) 6fd5c4ef 5cde2272

-10
-10
.mcp.json
··· 1 - { 2 - "mcpServers": { 3 - "st": { 4 - "type": "stdio", 5 - "command": "/Volumes/SSD/src/github.com/myobie/coord/bin/st", 6 - "args": ["mcp", "--channel"], 7 - "env": {} 8 - } 9 - } 10 - }