1. Refactored the core usage logic from `arcade_cli` to `arcade_core` 2. Add "MCP server started" event As always, opt out by setting `ARCADE_USAGE_TRACKING` to 0.
9 lines
272 B
Python
9 lines
272 B
Python
# MCP Server Specific Event Names
|
|
EVENT_MCP_SERVER_STARTED = "MCP server started"
|
|
|
|
# MCP Server Specific Property Names
|
|
PROP_TRANSPORT = "transport"
|
|
PROP_HOST = "host"
|
|
PROP_PORT = "port"
|
|
PROP_TOOL_COUNT = "tool_count"
|
|
PROP_MCP_SERVER_VERSION = "arcade_mcp_server_version"
|