17 lines
400 B
Plaintext
17 lines
400 B
Plaintext
# Schema for get_project_summary MCP tool
|
|
# Validates project summary requests
|
|
{
|
|
tool_name = "get_project_summary",
|
|
|
|
description = "Get project summary and statistics",
|
|
|
|
parameters = {
|
|
# Project UUID
|
|
project_id
|
|
| String
|
|
| doc "UUID of the project"
|
|
| std.string.NonEmpty
|
|
| std.string.match "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
|
|
},
|
|
}
|