thinkneo_log_event
ActiveTool of ThinkNEO MCP Server
Log an event within an active agent trace. Supports event types: tool_call, model_call, decision, error, pii_access, guardrail_triggered. Returns event_id and running session cost. Requires authentication.
Parameters schema
{
"type": "object",
"title": "thinkneo_log_eventArguments",
"required": [
"session_id",
"event_type"
],
"properties": {
"cost": {
"type": "number",
"title": "Cost",
"default": 0,
"description": "Estimated cost in USD for this event (e.g., 0.003 for an API call)"
},
"metadata": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Metadata",
"default": null,
"description": "Optional dict with additional event context"
},
"tool_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Tool Name",
"default": null,
"description": "Name of the tool called (for tool_call events)"
},
"event_type": {
"type": "string",
"title": "Event Type",
"description": "Event type: 'tool_call', 'model_call', 'decision', 'error', 'pii_access', or 'guardrail_triggered'"
},
"latency_ms": {
"type": "integer",
"title": "Latency Ms",
"default": 0,
"description": "Latency in milliseconds for this event"
},
"model_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Model Name",
"default": null,
"description": "Model used (for model_call events, e.g., 'gpt-4o', 'claude-sonnet-4-20250514')"
},
"session_id": {
"type": "string",
"title": "Session Id",
"description": "Session ID from thinkneo_start_trace"
},
"input_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Input Summary",
"default": null,
"description": "Brief summary of the input (max 500 chars, truncated if longer)"
},
"output_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Output Summary",
"default": null,
"description": "Brief summary of the output (max 500 chars, truncated if longer)"
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
ThinkNEO MCP Server
https://github.com/thinkneo-ai/mcp-server
3/7 registries