CoworkCanvas is a flexible, schema-driven work management platform. Admins configure item types, fields, and workflows — AI agents interact with everything via MCP tools.
GET https://demo-mcp.coworkcanvas.com/.well-known/oauth-authorization-server
Protocol
JSON-RPC 2.0 over HTTP
MCP spec version
2024-11-05
Common Pitfalls
Calling suggest_change without knowing the schema. Always call get_schema first so you know available item type slugs, field keys, and valid SELECT option values. Passing an unknown field key or invalid option value will fail.
Using mutations in query_data. The query_data tool only accepts GraphQL queries — mutation and subscription operations are rejected. All writes must go through suggest_change.
Forgetting that writes require human approval.suggest_change creates a pending suggestion — it does NOT apply the change immediately. Always tell the user to visit the previewUrl to approve.