Fibery MCP 服务器
该 MCP(模型上下文协议)服务器提供 Fibery 与任何支持 MCP 协议的 LLM 提供商(例如 Claude for Desktop)之间的集成,允许您使用自然语言与您的 Fibery 工作区进行交互。
✨ 特点
- 使用自然语言查询 Fibery 实体
- 获取有关 Fibery 数据库及其字段的信息
- 通过对话界面创建和更新 Fibery 实体
📦安装
通过 Smithery 安装
要通过Smithery自动为 Claude Desktop 安装 Fibery MCP Server:
通过 UV 安装
先决条件:
- 带有 API 令牌的 Fibery 帐户
- Python 3.10 或更高版本
- 紫外线
安装步骤:
- 使用 uv 安装工具:
- 然后,将此配置添加到您的 MCP 客户端配置文件中。在 Claude Desktop 中,您可以通过**“设置”→“开发者”→“编辑配置”**访问此配置:
注意:如果“uv”命令不起作用,请尝试绝对路径(即/Users/username/.local/bin/uv)
对于开发:
🚀 可用工具
1.列出数据库( list_databases
)
检索 Fibery 工作区中可用的所有数据库的列表。
2.描述数据库( describe_database
)
提供特定数据库结构的详细分类,显示所有字段及其标题、名称和类型。
3.查询数据库( query_database
)
通过 Fibery API 提供对 Fibery 数据的强大、灵活的访问。
4.创建实体( create_entity
)
使用指定的字段值在您的 Fibery 工作区中创建新实体。
5.创建实体( create_entities_batch
)
使用指定的字段值在您的 Fibery 工作区中创建多个新实体。
6. 更新实体( update_entity
)
使用新的字段值更新 Fibery 工作区中的现有实体。
Related MCP Servers
- -securityAlicense-qualityA server for the Machine Chat Protocol (MCP) that provides a YAML-based configuration system for LLM applications, allowing users to define resources, tools, and prompts without writing code.Last updated -5PythonMIT License
Fused MCP Agentsofficial
-securityAlicense-qualityA Python-based MCP server that allows Claude and other LLMs to execute arbitrary Python code directly through your desktop Claude app, enabling data scientists to connect LLMs to APIs and executable code.Last updated -23MIT License- -securityFlicense-qualityAn MCP server that enables Claude and other compatible LLMs to interact with the GitHub API, supporting features like creating issues, retrieving repository information, listing issues, and searching repositories.Last updated -TypeScript
- -securityFlicense-qualityAn MCP server that allows Claude to interact with local LLMs running in LM Studio, providing access to list models, generate text, and use chat completions through local models.Last updated -Python