other
Radar MCP Integration for OpenAI Agents SDK
Connect Radar to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Radar to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Radar MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-radar": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=radar",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=radar --write=deny Why Use KosmoKrator Here
Expose only Radar instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Radar Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Radar integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__radar__radar_list_geofences | radar.radar_list_geofences | Read | List geofences from Radar with optional filters for tag, group, and pagination. |
integration__radar__radar_get_geofence | radar.radar_get_geofence | Read | Retrieve detailed information about a specific geofence by its ID. |
integration__radar__radar_create_geofence | radar.radar_create_geofence | Write | Create a new geofence in Radar with a name, type, and geometry. |
integration__radar__radar_list_users | radar.radar_list_users | Read | List users from Radar with optional filters for tags and pagination. |
integration__radar__radar_get_user | radar.radar_get_user | Read | Retrieve detailed information about a specific Radar user by their ID. |
integration__radar__radar_list_events | radar.radar_list_events | Read | List events from Radar with optional filters for type, user, and pagination. |
integration__radar__radar_get_current_user | radar.radar_get_current_user | Read | Get the currently authenticated Radar user's account information. |