search_specifications
Search 3GPP telecommunications specifications using natural language queries to retrieve technical content, implementation requirements, and structured metadata for development and analysis.
Instructions
Search 3GPP specifications using TSpec-LLM dataset and official metadata. Returns actual specification content and structured metadata for agent consumption.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Response format - agent_ready provides structured JSON optimized for AI agents | agent_ready |
include_content | No | Include detailed specification content from TSpec-LLM (default: true) | |
max_results | No | Maximum number of results to return (default: 5) | |
query | Yes | Search query (e.g., "5G charging CHF implementation", "handover procedures", "authentication security") | |
release_filter | No | Filter by 3GPP release (e.g., ["Rel-16", "Rel-17"]) | |
series_filter | No | Filter by specification series (e.g., ["32", "33", "38"]) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "agent_ready",
"description": "Response format - agent_ready provides structured JSON optimized for AI agents",
"enum": [
"detailed",
"summary",
"agent_ready"
],
"type": "string"
},
"include_content": {
"default": true,
"description": "Include detailed specification content from TSpec-LLM (default: true)",
"type": "boolean"
},
"max_results": {
"default": 5,
"description": "Maximum number of results to return (default: 5)",
"type": "number"
},
"query": {
"description": "Search query (e.g., \"5G charging CHF implementation\", \"handover procedures\", \"authentication security\")",
"type": "string"
},
"release_filter": {
"description": "Filter by 3GPP release (e.g., [\"Rel-16\", \"Rel-17\"])",
"items": {
"type": "string"
},
"type": "array"
},
"series_filter": {
"description": "Filter by specification series (e.g., [\"32\", \"33\", \"38\"])",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"query"
],
"type": "object"
}