mcpjam_search_mcp_spec
Search and retrieve specific sections of the MCP specification document, such as 'Tools', 'Resources', or 'Authorization', to access detailed protocol information for development and implementation.
Instructions
Search the MCP specification document for relevant content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Select a specific section of the MCP specification to retrieve. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "Select a specific section of the MCP specification to retrieve.",
"enum": [
"Introduction",
"Core components",
"Connection lifecycle",
"Elicitation",
"Prompts",
"Resources",
"Roots",
"Sampling",
"Tools",
"Transports",
"Debugging",
"Follow logs in real-time",
"For Client Developers",
"For Server Developers",
"Architecture",
"Authorization",
"Lifecycle",
"Security Best Practices",
"Transports",
"Cancellation",
"Ping",
"Progress",
"Elicitation",
"Roots",
"Sampling",
"Specification",
"Overview",
"Prompts",
"Resources",
"Tools",
"Completion",
"Logging",
"Pagination",
"Versioning"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}