Retrieves a list of all databases available in your Fibery workspace
Provides a detailed breakdown of a specific database's structure, showing all fields with their titles, names, and types
Offers powerful, flexible access to your Fibery data through the Fibery API
Creates new entities in your Fibery workspace with specified field values
Creates multiple new entities in your Fibery workspace with specified field values
Updates existing entities in your Fibery workspace with new field values
The Fibery Integration provides a seamless connection between your Fibery workspace and AI assistants supporting the Model Context Protocol. This integration enables you to query, create, and update Fibery entities through natural language conversations, making it easier to manage your workspace data without switching contexts. With this integration, you can retrieve information about your Fibery databases and their fields, run complex queries against your data, and create or update entities - all through conversational interfaces. This powerful toolset bridges the gap between your knowledge management system and AI assistants, enhancing productivity and streamlining workflows.
The Fibery Integration allows you to interact with your Fibery workspace directly through AI assistants that support the Model Context Protocol (MCP). This integration enables natural language interactions with your Fibery data, making it easier to query information, create new entities, and update existing ones without leaving your conversation with the AI.
Before installing the Fibery Integration, you'll need:
The easiest way to install the Fibery Integration is through Smithery:
npx -y @smithery/cli install @Fibery-inc/fibery-mcp-server --client claude
This command automatically configures the integration for Claude Desktop.
uv tool install fibery-mcp-server
To configure the Fibery Integration, you'll need to provide:
your-domain.fibery.io
)For Claude Desktop, access the configuration in Settings → Developer → Edit Config and add the following:
{
"mcpServers": {
"fibery-mcp-server": {
"command": "uv",
"args": [
"tool",
"run",
"fibery-mcp-server",
"--fibery-host",
"your-domain.fibery.io",
"--fibery-api-token",
"your-api-token"
]
}
}
}
Note: If the "uv" command doesn't work, try using the absolute path (e.g., /Users/username/.local/bin/uv
).
Once installed, you can interact with your Fibery workspace using natural language. Here are some example prompts:
The integration will interpret these requests and use the appropriate tools to interact with your Fibery workspace.
If you encounter issues with the integration:
For development or debugging purposes, you can use the following configuration:
{
"mcpServers": {
"fibery-mcp-server": {
"command": "uv",
"args": [
"--directory",
"path/to/cloned/fibery-mcp-server",
"run",
"fibery-mcp-server",
"--fibery-host",
"your-domain.fibery.io",
"--fibery-api-token",
"your-api-token"
]
}
}
}