get_mcp_doc_section
Retrieve a specific section of MCP documentation using a key and section title to locate and access relevant content for MCP server projects.
Instructions
Get a specific section of MCP documentation by key and section title
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | ||
section_title | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"key": {
"minLength": 1,
"type": "string"
},
"section_title": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}