已弃用
此本地MCP服务器是 弃用.我们支持 远程MCP服务器 现在,可以通过以下网址连接: https://mcp.fibery.io/mcp.
看 Fibery MCP服务器指南 有关设置说明。
此存储库将不再接收功能更新。请迁移到远程服务器。
安装
如果您仍然想使用此服务器。..
通过史密瑟里安装
通过以下方式自动安装Cloud Desktop的Fibery MCP服务器 铁匠铺:
npx -y @smithery/cli install @Fibery-inc/fibery-mcp-server --client claude通过UV安装
先决条件:
- 带有API代币的Fibery帐户
- Python 3.10或更高版本
- 紫外线
安装步骤:
- 使用uv安装工具:
uv tool install fibery-mcp-server- 然后,将此配置添加到MCP客户端配置文件中。在Claude Desktop中,您可以访问以下配置 设置→ 开发者→ 编辑配置:
{
"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"
]
}
}
}
