MarkdownFS¶
A high-performance, versioned virtual filesystem for markdown — built for AI agents and the developers who orchestrate them.
Why¶
Agents need durable, inspectable, searchable workspaces. Plain disk doesn't version. Git is too heavy for ephemeral writes. Object stores aren't filesystems. MarkdownFS gives agents a fast in-memory filesystem with built-in commits, permissions, and a REST API — self-hostable on a free Hugging Face Space.
Three ways to use it¶
-
:material-web: REST API Hit it from any language. Boots in seconds. → HTTP API
-
:material-language-typescript: TypeScript SDK
bun add markdownfsand start writing files. → TypeScript -
:material-language-python: Python SDK
uv add markdownfs, sync or async. → Python -
:material-robot: MCP server Drop-in agent memory for Claude, Cursor, and more. → MCP
60-second quickstart¶
docker run -p 7860:7860 -e MARKDOWNFS_LISTEN=0.0.0.0:7860 \
ghcr.io/subramanya1997/markdownfs:latest
Then from anywhere:
What you get¶
- In-memory speed — ~100x faster than native filesystems for typical agent workloads
- Git-style commits —
commit,log,revert, content-addressable dedup - Real users & permissions — Unix-style
chmod/chown, groups, tokens - Three transports — CLI, REST API, MCP server, all sharing one core
- Self-hostable — single Rust binary or one-click Hugging Face Space