fibery_inc_fibery_mcp_server

fibery_inc_fibery_mcp_server

by Fibery-inc
An MCP server enabling natural language interaction with Fibery workspaces through LLM providers like Claude.

Fibery MCP Server for LLM Integration

Overview

The Fibery MCP Server provides seamless integration between Fibery and any LLM provider supporting the Model Context Protocol (MCP). This enables users to interact with their Fibery workspace using natural language, making data management more intuitive and efficient.

Features

  • Query Fibery entities using natural language: Easily retrieve information from your Fibery workspace.
  • Get detailed information about databases and fields: Understand the structure of your Fibery databases.
  • Create and update entities through conversational interfaces: Manage your data without leaving the chat interface.

Installation

Prerequisites

  • A Fibery account with an API token.
  • Python 3.10 or higher.
  • uv for managing dependencies.
uv tool install fibery-mcp-server

MCP Integration

To integrate the Fibery MCP Server with your MCP client, add the following configuration to your MCP client config file. For Claude Desktop, this can be accessed in 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 the "uv" command does not work, try using the absolute path (e.g., /Users/username/.local/bin/uv).

For Development

{
    "mcpServers": {
        "arxiv-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"
            ]
        }
    }
}

Available Tools

1. List Databases (list_databases)

Retrieves a list of all databases available in your Fibery workspace.

2. Describe Database (describe_database)

Provides a detailed breakdown of a specific database's structure, showing all fields with their titles, names, and types.

3. Query Database (query_database)

Offers powerful, flexible access to your Fibery data through the Fibery API.

4. Create Entity (create_entity)

Creates new entities in your Fibery workspace with specified field values.

5. Update Entity (update_entity)

Updates existing entities in your Fibery workspace with new field values.

Resources

Stars

8 stars

Watchers

4 watching

Forks

0 forks

Languages

Features & Capabilities

Categories
mcp_server model_context_protocol python claude api_integration natural_language_processing

Implementation Details

Stats

0 Views
8 GitHub Stars

Repository Info

Fibery-inc Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300