codeAtlas / src /mcp /server.py
aghilsabu's picture
feat: add MCP (Model Context Protocol) server
42c47d4
raw
history blame contribute delete
332 Bytes
"""MCP Server - FastMCP implementation"""
import logging
from fastmcp import FastMCP
logger = logging.getLogger("codeatlas.mcp")
mcp = FastMCP("CodeAtlas")
from . import tools # noqa: F401, E402
def run_server():
logger.info("Starting CodeAtlas MCP Server...")
mcp.run()
if __name__ == "__main__":
run_server()