fibery-mcp-gateway
Establish connectivity with the Fibery platform to execute arbitrary queries, instantiate new records, and modify existing ones, all via natural language instructions. Achieve smooth operational access and manipulation of Fibery datasets through conversational interaction layers.
Author

Fibery-inc
Quick Info
Actions
Tags
Fibery Model Context Protocol Access Point
This Model Context Protocol (MCP) intermediary service bridges Fibery with any Language Model (LLM) implementation that adheres to the MCP specification (e.g., the Claude desktop application), enabling users to interface with their Fibery environment using plain English.
✨ Core Capabilities
- Translate user intent into requests to retrieve Fibery items.
- Obtain structural metadata regarding Fibery workspaces and their data attributes.
- Facilitate the provisioning and alteration of Fibery entries via dialogue.
📦 Deployment Instructions
Automated Setup via Smithery
For a streamlined, automated deployment targeting Claude Desktop utilizing Smithery:
bash npx -y @smithery/cli install @Fibery-inc/fibery-mcp-server --client claude
Manual Installation Utilizing UV
Prerequisites:
- Valid credentials for the Fibery API (token required).
- Python runtime version 3.10 or newer.
- The
uvpackage manager installed.
Procedural Steps:
-
Deploy the tool using the
uvmanager: bash uv tool install fibery-mcp-server -
Integrate the following configuration block into your MCP client's configuration file. For Claude Desktop users, this is accessible under Settings → Developer → Edit Config:
{ "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 invoking uv directly fails, consider substituting the command with its absolute path (e.g., /Users/username/.local/bin/uv).
For Source Code Development Contexts:
{ "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" ] } } }
🚀 Functionality Catalog
1. List Databases (list_databases)
Fetches an inventory of every accessible database within the Fibery organizational space.
2. Describe Database (describe_database)
Generates a comprehensive schema outline for a specified database, detailing all attributes, their labels, unique identifiers, and data types.
3. Query Database (query_database)
Enables sophisticated, adaptable retrieval of data records from Fibery via its underlying Application Programming Interface.
4. Create Entity (create_entity)
Provisions a singular, new record within the Fibery structure, populating fields according to provided specifications.
5. Create Entities (create_entities_batch)
Handles bulk creation operations, adding multiple new records simultaneously to a designated Fibery database.
6. Update Entity (update_entity)
Modifies the values associated with an existing record already present in the Fibery environment.
