Livejournal
@pavelber
About Livejournal
Local MCP server for LiveJournal journals. It uses the legacy LiveJournal XML-RPC API to read entries, read comments, post to your own journal, and build a local SQLite cache for search.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"livejournal": {
"command": "C:\\path\\to\\livejournal-mcp\\.venv\\Scripts\\python.exe",
"args": [
"-m",
"livejournal_mcp.server"
],
"env": {
"LJ_USERNAME": "your_livejournal_username",
"LJ_PASSWORD": "your_livejournal_password",
"LJ_JOURNAL": "your_livejournal_username",
"LJ_CACHE_PATH": "C:\\Users\\you\\AppData\\Local\\livejournal-mcp\\livejournal.sqlite3"
}
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Livejournal?
Livejournal is an MCP server that integrates with LiveJournal, enabling reading of journal entries, creating posts (with a default dry run), caching entries locally in SQLite, and generating authenticated sessions for LiveJournal web endpoints. It is intended for LiveJournal users who want programmatic access to their journals via an MCP‑compatible client.
How to use Livejournal?
You need Python 3.10+, a LiveJournal account, and an MCP‑compatible client. SQLite (built into Python) is used for local caching. The server exposes tools for reading, searching, creating, and caching entries. Invoke it as an MCP server; no explicit install or configuration steps are provided in the README beyond the requirements.
Key features of Livejournal
- Read recent, dated, or specific entries by itemid.
- Create posts with a default dry run (
dry_run: true). - Search recently fetched or locally cached entries.
- Fetch and cache entry comments via LiveJournal XMLRPC.
- Generate an ljsession for authenticated web endpoint access.
- Cache entries in SQLite and query the cache.
Use cases of Livejournal
- Automatically reading recent entries from a LiveJournal feed.
- Drafting posts locally with dry‑run before publishing.
- Searching through cached journal content offline.
- Generating an authenticated LiveJournal session for web‑based tools.
FAQ from Livejournal
What Python version is required?
Python 3.10 or later.
Do I need a LiveJournal account?
Yes, a LiveJournal account is required to use this server.
Where are cached entries stored?
Entries are cached locally in SQLite, which is built into Python – no separate SQLite installation is needed.
Are posts published immediately by default?
No, create_post works with dry_run: true by default, so posts are not sent to LiveJournal unless you explicitly set dry_run: false.
What transports or authentication are supported?
The server uses LiveJournal XMLRPC for reading and creating entries, and an ljsession can be generated for LiveJournal web endpoints. No other transports are mentioned.
More Developer Tools MCP servers
Smithery CLI
smithery-aiInstall, manage and develop MCP servers and skills for agents
Unity MCP (Server + Plugin)
IvanMurzakAI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for fr
Hello World MCP Server (Reference Extension)
anthropicsDesktop Extensions: One-click local MCP server installation in desktop apps
Grafana MCP server
grafanaMCP server for Grafana
@vercel/mcp-adapter
vercelEasily spin up an MCP Server on Next.js, Nuxt, Svelte, and more
Comments