<a href="https://github.com/Fibery-inc/fibery-mcp-server/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" /></a>
此 MCP(模型上下文协议)服务器提供了 Fibery 和支持 MCP 协议的任何 LLM 提供商之间的集成(例如,Claude 桌面版),允许您通过自然语言与您的 Fibery 工作区进行交互。
要通过 Smithery 自动安装 Fibery MCP 服务器用于 Claude 桌面版:
npx -y @smithery/cli install @Fibery-inc/fibery-mcp-server --client claude
uv tool install fibery-mcp-server
{
"mcpServers": {
"fibery-mcp-server": {
"command": "uv",
"args": [
"tool",
"run",
"fibery-mcp-server",
"--fibery-host",
"your-domain.fibery.io",
"--fibery-api-token",
"your-api-token"
]
}
}
}
注意:如果 "uv" 命令不起作用,请尝试绝对路径(例如 /Users/username/.local/bin/uv)
对于开发:
{
"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"
]
}
}
}
list_databases)检索您 Fibery 工作区中的所有可用数据库列表。
describe_database)提供特定数据库结构的详细分解,显示所有字段及其标题、名称和类型。
query_database)通过 Fibery API 提供强大的灵活访问您的 Fibery 数据。
create_entity)在您的 Fibery 工作区中创建具有指定字段值的新实体。
create_entities_batch)在您的 Fibery 工作区中创建多个具有指定字段值的新实体。
update_entity)更新您的 Fibery 工作区中的现有实体以具有新的字段值。