We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CyranoB/duckduckgo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•391 B
#!/usr/bin/env python3
"""
MCP Server Instance
This module provides the single FastMCP server instance used by all tools.
Centralizing the MCP instance ensures all tools are registered to the same server.
"""
from fastmcp import FastMCP
# Create the single MCP server instance
# All tools should import this instance and use the @mcp.tool() decorator
mcp = FastMCP(name="duckduckgo_mcp")