We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xplainable/xplainable-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mcp_instance.py•318 B
"""
Shared MCP instance for the Xplainable MCP Server.
This module provides a single FastMCP instance that is shared across
all tool modules to ensure proper registration.
"""
from fastmcp import FastMCP
# Initialize the shared FastMCP server instance
mcp = FastMCP(
name="xplainable-mcp",
version="0.1.0"
)