MoliTodo Local API
Use this skill when MoliTodo has enabled its local server in Settings > Local API.
Workflow
- Read the base URL from the user or assume the default
http://127.0.0.1:1234. - Call
GET /api/healthto confirm the server is online. - Call
GET /api/docsfor a compact endpoint list. - If the caller needs structured tooling metadata, call
GET /api/openapi.json. - Use task and list endpoints from the reference below.
Default endpoints
GET /api/healthGET /api/docsGET /api/openapi.jsonGET /api/listsPOST /api/listsGET /api/tasksPOST /api/tasksPATCH /api/tasks/:idDELETE /api/tasks/:idPOST /api/tasks/:id/startPOST /api/tasks/:id/pausePOST /api/tasks/:id/complete
Notes
- The server only listens on localhost by default.
- All requests and responses use JSON.
- Start with reads before writes whenever the current task state matters.
- Read the reference file for request examples and query parameters.
See references/api.md for concrete examples.
Source: gusibi/MoliTodo — distributed by TomeVault.