Back to Apps

Watchword
Supports UIby giglabocom
Persistent shared memory for AI agents, storing prompts and snippets under memorable code words.
0 stars
Works in:Codex
Exposes:ToolsResourcesPrompts
What it does
Watchword acts as a persistent, named storage system for AI assistants. It allows users to save useful prompts, templates, code snippets, or arbitrary text under human-readable keywords (code words), making them recallable across different sessions, machines, or even by different team members using the same instance.
Tools
store_entry: Store a payload under a keyword with automatic collision resolution.get_entry_by_word: Retrieve the full payload of an entry using its keyword.search_words: Lightweight keyword search for browsing stored entries.list_entries: Paginated list of entries with summaries.upload_file/download_file: Manage files up to 1GB via S3 presigned URLs.delete_entry: Permanently remove entries by UUID or keyword.
Installation
Add to claude_desktop_config.json:
{
"mcpServers": {
"watchword": {
"command": "/path/to/watchword",
"args": ["--config", "/path/to/config.yaml"],
"env": {
"WORDSTORE_AUTH_TOKEN": "your-secret-token"
}
}
}
}
Supported hosts
- Claude Desktop
- Claude Code
- Any MCP-compliant client
Quick install
go build -o watchword ./cmd/server && ./watchword --config config.yamlInformation
- Pricing
- free
- Published
- 7/2/2026
- stars
- 0
Categories
Choose your AI client and follow the steps below.
Codex
Add binary path and config to mcp configClaude Desktop
{
"mcpServers": {
"watchword": {
"command": "/path/to/watchword",
"args": ["--config", "/path/to/config.yaml"],
"env": {
"WORDSTORE_AUTH_TOKEN": "your-secret-token"
}
}
}
}





