What is MCP?
The Model Context Protocol (MCP) is an open standard that lets AI assistants interact with external tools and data sources. clarife exposes an MCP endpoint that gives AI agents full access to your workspace.MCP Endpoint
Setup
- Claude Desktop
- Cursor
- Claude Code
Edit your Restart Claude Desktop to load the new server.
claude_desktop_config.json:Team Workspace
To target a specific workspace, add theX-Workspace-Id header:
Available Tools
The MCP server exposes 28 tools that mirror the REST API. Each tool requires the same scopes as its REST counterpart.| Tool | Scope | Description |
|---|---|---|
list_documents | documents:read | List documents with pagination |
get_document | documents:read | Get a document with content |
create_document | documents:write | Create a new document |
update_document | documents:write | Update document fields |
delete_document | documents:write | Soft-delete a document |
list_projects | projects:read | List projects |
get_project | projects:read | Get a project with documents |
create_project | projects:write | Create a project |
update_project | projects:write | Update a project |
delete_project | projects:write | Delete a project |
move_project | projects:write | Move project to a folder |
list_folders | projects:read | List folders |
create_folder | projects:write | Create a folder |
update_folder | projects:write | Update a folder |
delete_folder | projects:write | Delete a folder |
list_shares | shares:read | List share links |
get_share | shares:read | Get share with view stats |
create_share | shares:write | Create a share link |
update_share | shares:write | Update a share link |
delete_share | shares:write | Delete a share link |
presign_media | media:write | Get a presigned upload URL |
confirm_media | media:write | Confirm a media upload |
get_workspace | workspace:read | Get workspace details |
list_workspace_members | workspace:read | List workspace members |
list_brandings | brandings:read | List branding configurations |
get_branding | brandings:read | Get a branding configuration |
Example Prompts
Once connected, you can ask your AI assistant things like:- “List all my clarife documents”
- “Create a new document called ‘API Integration Guide’ in the Product Docs project”
- “Share the onboarding tutorial with a password and a 30-day expiry”
- “Export the setup guide as PDF and give me the download link”
- “Show me the members of my workspace”