File size: 332 Bytes
42c47d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""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()