get_document
Retrieve document content from Memory Bank MCP Server by specifying project ID and type. Supports project isolation and integration with LLM tools for efficient multi-project document management.
Instructions
获取文档内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | 项目ID | |
type | Yes | 文档类型 (projectbrief, productContext, activeContext, systemPatterns, techContext, progress, tasks, custom) |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "项目ID",
"type": "string"
},
"type": {
"description": "文档类型 (projectbrief, productContext, activeContext, systemPatterns, techContext, progress, tasks, custom)",
"type": "string"
}
},
"required": [
"projectId",
"type"
],
"type": "object"
}