Who can use this feature?
🔐 All team members can configure this integration.
⭐️ Available on all plans.
Nuclino supports the Model Context Protocol (MCP), an open standard that lets AI assistants access your workspace content directly. This means you can ask your AI assistant to search your documentation, create new pages, or update existing content. All through natural conversation. For an overview, see Nuclino MCP.
MCP is an open protocol that allows AI applications to securely connect to external data sources. When you connect Nuclino via MCP, your AI assistant can:
Search your workspaces for relevant information.
Read the full content of any page.
Create new items and collections.
Update existing pages.
Restore earlier versions of a page from its version history.
Organize content by moving items between collections and workspaces, or to the trash.
Comment on pages to leave feedback or ask questions.
Set up workspaces by creating new ones or changing their name and default view.
Attach files to pages, either from a public URL or from your computer.
All actions respect your existing permissions
The AI can only access what your account can access.
MCP is supported by a growing number of AI applications, including Claude Desktop, Cursor, Windsurf, and others. The setup process varies by application, but generally involves adding the Nuclino server URL to your MCP configuration.
Setting | Value |
Server URL | |
Authentication | OAuth 2.0 (handled automatically) |
Open your AI application's MCP or integration settings.
Add a new MCP server with the URL https://api.nuclino.com/mcp.
Restart the application if required.
When you first interact with Nuclino through the AI, you'll be prompted to authorize access.
Sign in to your Nuclino account and approve the connection.
Many MCP clients use a JSON configuration file. The Nuclino entry typically looks like this:
{
"mcpServers": {
"nuclino": {
"url": "https://api.nuclino.com/mcp"
}
}
}Refer to your AI application's documentation for the exact configuration format and file location.
If your MCP client doesn't support OAuth, you can authenticate using an API key instead. After creating an API key, you can configure your MCP client with the bearer token:
{
"mcpServers": {
"nuclino": {
"url": "https://api.nuclino.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Replace YOUR_API_KEY with the key you created.
Once connected, your AI assistant can use these tools to interact with Nuclino:
Tool | Description |
| List all teams you have access to |
| List workspaces, optionally filtered by team |
| Get details of a specific workspace |
| Create a new public or private workspace in a team |
| Rename a workspace or change its default view |
| List items in a workspace or team |
| Search for items by keyword in a workspace or team |
| Read the full content of an item |
| Create a new item or collection |
| Update an item's title, content, or field values |
| Apply partial, line-based edits to an item's content |
| List the saved versions of an item |
| Read the content of a saved version of an item |
| Restore an item's content to a saved version |
| Move an item or collection into another collection, to a workspace root, or to another workspace of the same team |
| Move an item to trash |
| Start a comment thread on an item |
| Read the comment threads of an item, including replies |
| Read a single comment thread |
| Create a new field in a workspace |
| Update an existing field definition |
| Delete a field from a workspace |
| Get metadata and download URL for attached files |
| Upload a file from a public URL and attach it to an item |
| Start uploading a local file to an item (step 1 of 2, returns the upload data for a direct upload to storage) |
| Complete a direct upload and attach the file to the item (step 2 of 2) |
Once Nuclino is connected, you can ask your AI assistant things like:
"Search my Nuclino workspace for our API documentation"
"Create a new page in Nuclino titled 'Meeting Notes' with a summary of what we discussed"
"Find the onboarding checklist and add a new item for security training"
"What does our documentation say about deployment procedures?"
"Move the release checklist into the Engineering collection"
"Leave a comment on the onboarding guide asking who owns the security training section"
"Create a new workspace called 'Product Roadmap' that opens in the board view"
"Attach the PDF at this link to the release notes page and embed it below the summary"
"Show me what the deployment guide looked like last week and restore that version"
You can view and manage your MCP connections from your Nuclino profile settings under API Keys. Each MCP connection creates an API key labeled with the application name (e.g., "MCP: claude.ai" or "MCP: cursor.com").
To disconnect an AI assistant from your Nuclino account, revoke the API key.
OAuth 2.0 with PKCE: Industry-standard secure authorization flow
Scoped Access: The AI can only access workspaces and teams your account has permission to view or edit
No Password Sharing: Your Nuclino password is never shared with third-party applications
Revocable: You can disconnect any application at any time from your account settings
Rate Limited: API access is rate-limited to prevent abuse
If you're building an MCP client or integration:
Endpoint: https://api.nuclino.com/mcp
Protocol: MCP over HTTPS with JSON responses (stateless mode)
Authentication: OAuth 2.0 with PKCE
OAuth Metadata: https://api.nuclino.com/.well-known/oauth-authorization-server