We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bigbugAi/bigbugai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server_stdio.py•457 B
"""STDIO entrypoint for the BigBugAI MCP server.
Launch with: `uv run -m bigbugai_mcp.server_stdio`
"""
from __future__ import annotations
from mcp.server.fastmcp import FastMCP
from bigbugai_mcp.tools import register_tools
# Instantiate MCP server
mcp = FastMCP("bigbugai")
# Register tools
register_tools(mcp)
if __name__ == "__main__":
# Start stdio transport for local MCP clients like Claude Desktop / Cursor
mcp.run(transport="stdio")