Remote MCP server for vimango using PostgreSQL backend. Enables Claude iOS (and other remote MCP clients) to interact with vimango notes.
- Copy
config.json.exampletoconfig.jsonand configure PostgreSQL connection - Install:
uv sync - Run:
uv run vimango-remote-mcp
{
"postgres": {
"host": "localhost",
"port": "5432",
"user": "slzatz",
"password": "your_password",
"db": "vimango",
"ssl_mode": "disable"
},
"server": {
"host": "0.0.0.0",
"port": 8080
}
}create_note- Create a new note with title and markdown bodylist_contexts- List available contextslist_folders- List available folderssearch_notes- Full-text search using PostgreSQLget_note- Retrieve full note content by tidupdate_note- Update note metadata (context, folder, title, star)