docs_get_doc_detail
Retrieve detailed document information from McpDocServer by specifying the document ID and optional source, enabling efficient access to development framework documentation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | 文档ID | |
source | No | 文档源名称(如不提供,将搜索所有源) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "文档ID",
"type": "string"
},
"source": {
"description": "文档源名称(如不提供,将搜索所有源)",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}