"""Configuration for the MCP Server"""
# Server configuration
SERVER_NAME = "mcp-server-fastmcp"
SERVER_VERSION = "0.1.0"
SERVER_DESCRIPTION = "A basic MCP server using FastMCP for integration with Cline"
# Server host and port (for future reference)
# These would be used if the server runs as an HTTP service
HOST = "127.0.0.1"
PORT = 8000
# Tool configuration
TOOLS = {
"get_greeting": {
"description": "Get a greeting message",
"enabled": True,
},
"calculate_sum": {
"description": "Calculate the sum of two numbers",
"enabled": True,
},
"get_server_info": {
"description": "Get information about the MCP server",
"enabled": True,
},
}