Install
$ agentstack add mcp-thymerapp-thymercli ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
thymercli
A companion app for Thymer that provides an MCP server for connecting AI agents and a command-line interface for direct workspace access.
See thymer.com/mcp for full documentation, setup instructions, and downloads.
Features
- MCP Server — Exposes your Thymer workspaces to AI agents (Claude Code, Cursor, Gemini CLI, etc.) via the Model Context Protocol
- CLI — Manage workspaces, collections, pages, journal, plugins, themes, and more from the terminal
- Interactive REPL — Run commands interactively while the MCP server runs in the background
- Markdown Mirror — Continuously export workspaces as markdown files to a local directory for grepping and reading
How it works
┌─────────────┐ HTTP/JSON-RPC ┌─────────────┐ WebSocket ┌─────────────┐
│ AI Agent │ ◄─────────────────────────►│ thymercli │◄────────────────────►│ Thymer │
│ (Claude) │ MCP Protocol │ (Go app) │◄────────────────────►│ Org 1...N │
└─────────────┘ └─────────────┘ └─────────────┘
thymercli runs locally on your machine. It connects to Thymer in your browser (or the upcoming desktop app) via WebSocket, and serves MCP over HTTP on 127.0.0.1:13100. Your data never leaves your machine for MCP — it flows directly between Thymer, the local CLI, and your AI agent.
Multiple Thymer organizations can connect simultaneously (e.g., personal.thymer.com and work.thymer.com).
Building
go build -o thymercli .
Quick start
# Start the MCP server and interactive REPL
./thymercli
Then connect Thymer via the MCP Settings dialog (statusbar or Command Palette), and point your AI agent to http://127.0.0.1:13100.
# Or use CLI commands directly
./thymercli search "meeting notes"
./thymercli journal
./thymercli page list -w "My Workspace" -c "Tasks"
CLI commands
thymercli Start MCP server & interactive REPL
thymercli mcp Start MCP server explicitly
thymercli status Show server status and connected organizations
thymercli workspace list List available workspaces
thymercli workspace show Show workspace details
thymercli collection list|show|create|trash|navigate
thymercli page list|show|create|insert|add|move|trash|untrash|navigate
thymercli line edit|delete|move|flag|done
thymercli property list|get|set
thymercli journal [date] Show or add to journal pages
thymercli search Full-text search across a workspace
thymercli plugin list|show|update
thymercli theme list|get|set
thymercli mdmirror Trigger markdown mirror update
thymercli use Set persistent workspace/collection context
Use --json for structured output, --workspace/--collection to scope commands, and pipe content via stdin:
cat notes.md | thymercli page add PAGE_GUID
cat styles.css | thymercli plugin update css PLUGIN_GUID
echo "Shipped v2.0" | thymercli journal add
MCP access
MCP access is opt-in and disabled by default. Each workspace can be set to Off, Read Only, or Read & Write from the MCP Settings dialog in Thymer.
More information
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: thymerapp
- Source: thymerapp/thymercli
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.