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.
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.
Organize content by moving items to trash.
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 in a team |
| Get details of a specific workspace |
| List items in a workspace |
| Search for items by keyword |
| Read the full content of an item |
| Create a new item or collection |
| Update an item's title or content |
| Move an item to trash |
| Get metadata and download URL for attached files |
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?"
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