Skip to main content
Glama

Fibery MCP Server

Official
by Fibery-inc
__init__.py1.99 kB
from typing import Dict, Any import mcp from ..fibery_client import FiberyClient from fibery_mcp_server.tools.schema import schema_tool_name, schema_tool, handle_schema from fibery_mcp_server.tools.database import database_tool_name, database_tool, handle_database from fibery_mcp_server.tools.query import query_tool_name, query_tool, handle_query from fibery_mcp_server.tools.current_date import current_date_tool_name, current_date_tool, handle_current_date from fibery_mcp_server.tools.create_entity import create_entity_tool_name, create_entity_tool, handle_create_entity from fibery_mcp_server.tools.create_entities_batch import create_entities_batch_tool_name, create_entities_batch_tool, handle_create_entities_batch from fibery_mcp_server.tools.update_entity import update_entity_tool_name, update_entity_tool, handle_update_entity def handle_list_tools(): return [current_date_tool(), schema_tool(), database_tool(), query_tool(), create_entity_tool(), create_entities_batch_tool(), update_entity_tool()] async def handle_tool_call(fibery_client: FiberyClient, name: str, arguments: Dict[str, Any]): if name == schema_tool_name: return await handle_schema(fibery_client) elif name == database_tool_name: return await handle_database(fibery_client, arguments) elif name == query_tool_name: return await handle_query(fibery_client, arguments) elif name == current_date_tool_name: return await handle_current_date() elif name == create_entity_tool_name: return await handle_create_entity(fibery_client, arguments) elif name == create_entities_batch_tool_name: return await handle_create_entities_batch(fibery_client, arguments) elif name == update_entity_tool_name: return await handle_update_entity(fibery_client, arguments) else: return [mcp.types.TextContent(type="text", text=f"Error: Unknown tool {name}")] __all__ = [ "handle_list_tools", "handle_tool_call", ]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Fibery-inc/fibery-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server