home / mcp / ga511_mcp mcp server
Provides access to Georgia 511 traffic data via MCP, including cameras, signs, events, and alerts.
Configuration
View docs{
"mcpServers": {
"cpbrad31-mcp_ga_511": {
"command": "python",
"args": [
"ga511_mcp_server.py"
],
"env": {
"GA511_API_KEY": "YOUR_API_KEY"
}
}
}
}You set up this MCP server to access Georgia 511 traffic data programmatically. It enables MCP clients to query real-time information such as traffic cameras, message signs, events, alerts, rest areas, and more from Georgia’s 511 service, all through a consistent MCP interface.
Connect an MCP client to the Georgia 511 MCP Server to retrieve data from the Georgia 511 API. You can request information on cameras, signs, traffic events, alerts, rest areas, ports of entry, and express lanes. Use the available tools to filter results by region when needed. Start the server first, then point your MCP client to its address.
Prerequisites you need before running the server.
Install dependencies and run the server with your API key set in the environment.
# Step 1: Set your Georgia 511 API key
export GA511_API_KEY="your-api-key-here"
# Step 2: Install Python dependencies
pip install -r requirements.txt
# Step 3: Start the MCP server (default host/port)
python ga511_mcp_server.py
# Optional: customize host/port
python ga511_mcp_server.py --host 0.0.0.0 --port 9000The server runs by default on localhost at port 8080. You can change the listening address and port when you start it by supplying --host and --port. The Georgia 511 API key must be available to the server through the GA511_API_KEY environment variable.
# Environment variable for API key
export GA511_API_KEY="your-api-key-here"
# Start on a specific host and port
python ga511_mcp_server.py --host 0.0.0.0 --port 9000Fetch information about traffic cameras, including locations and status.
Retrieve data for variable message signs to understand current messaging.
Query variable speed signs and their current configurations.
Access ongoing traffic events and incidents.
Receive alerts related to traffic conditions.
Get information about rest areas along Georgia routes.
Query ports of entry data for inspection and travel information.
Obtain details on express lanes and their usage.