JSONPlaceholder · Capability
JSONPlaceholder REST API — Todos
Todos — the JSONPlaceholder todo-list surface. 6 operations. Lead operation: List Todos. Self-contained Naftiko capability covering one JSONPlaceholder business surface.
What You Can Do
GET
Listtodos
— List all todos.
/v1/todos
POST
Createtodo
— Create a new todo (simulated).
/v1/todos
GET
Gettodo
— Get a single todo by id.
/v1/todos/{id}
PUT
Replacetodo
— Replace a todo in full (simulated).
/v1/todos/{id}
PATCH
Updatetodo
— Partially update a todo (simulated).
/v1/todos/{id}
DELETE
Deletetodo
— Delete a todo (simulated).
/v1/todos/{id}
MCP Tools
list-todos
List all todos, optionally filtered by userId and completed.
read-only
idempotent
create-todo
Create a new todo (simulated).
get-todo
Get a single todo by id.
read-only
idempotent
replace-todo
Replace a todo in full (simulated).
idempotent
update-todo
Partially update a todo (simulated).
idempotent
delete-todo
Delete a todo (simulated).
idempotent