Fibery MCP Server
Overview
Fibery MCP Server is a server that facilitates integration between Fibery and any LLM provider that supports the Model Context Protocol (MCP), enabling users to interact with their Fibery workspace using natural language.
To use the Fibery MCP Server, you need to install it using the command uv tool install fibery-mcp-server, configure it with your Fibery account details, and set it up in your MCP client configuration.
- Query Fibery entities using natural language. - Retrieve information about Fibery databases and their fields. - Create and update Fibery entities through conversational interfaces.
- Interacting with Fibery databases using natural language queries.
- Automating the creation and updating of entities in Fibery.
- Enhancing user experience by allowing natural language interactions with data.
Add to your AI client
Use these steps to connect Fibery MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"fibery-mcp-server-fibery-inc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fibery-mcp-server-fibery-inc"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"fibery-mcp-server-fibery-inc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fibery-mcp-server-fibery-inc"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"fibery-mcp-server-fibery-inc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fibery-mcp-server-fibery-inc"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"fibery-mcp-server-fibery-inc": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fibery-mcp-server-fibery-inc"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"fibery-mcp-server-fibery-inc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fibery-mcp-server-fibery-inc"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"fibery-mcp-server-fibery-inc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fibery-mcp-server-fibery-inc"
]
}
}
}FAQ
What is required to use Fibery MCP Server?
You need a Fibery account with an API token and Python 3.10 or higher installed.
Can I use Fibery MCP Server with any LLM?
Yes, as long as the LLM supports the MCP protocol.
How do I configure the MCP client?
You need to add the provided configuration to your MCP client config file.