darshd9941/obsidian-mcp-server
3.2
If you are the rightful owner of obsidian-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Obsidian MCP Server (Cloud Version) is a tool designed to facilitate the integration of various agents with an Obsidian vault by accepting API calls and writing Markdown or image files.
Obsidian MCP Server (Cloud Version)
What this does:
- Accepts API calls from your agents (e.g. Telegram, Scraper, etc.)
- Writes Markdown or image files into your Obsidian vault
How to deploy on Render:
- Push this folder to GitHub (e.g. as
obsidian-mcp-server
) - Go to https://render.com and click "New → Web Service"
- Connect your repo
- Set:
- Build Command:
npm install
- Start Command:
npm start
- Environment Variable:
OBSIDIAN_VAULT_PATH=/data
- Build Command:
- Hit Deploy
Your MCP endpoint will be:
https://your-render-app-name.onrender.com/mcp
Example request:
POST /mcp
{
"action": "write",
"path": "photo-log/2025-07-07-summary.md",
"content": "---\ndate: 2025-07-07\ntags: [twitter]\n---\n\nSummary of the post here."
}