MCP Documentation Service is a custom implementation that enables AI assistants to interact with markdown documentation files. Developed by Aleks Petrov, this service provides document management capabilities including creating, reading, updating, and deleting documentation files, working with YAML frontmatter metadata, searching through documentation, and analyzing documentation health. The implementation supports both Node.js and Deno environments, offers command-line options for specifying custom documentation directories, and integrates seamlessly with Cursor IDE and Claude Desktop through a SQL-like query format for executing commands.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Read a specific markdown document. Parameter: path (string) - the path to the markdown file.
Write a new markdown document with specified content. Parameters: path (string) - the path to the new markdown file, content (string) - the content of the document.
Edit an existing markdown document by making precise line-based changes. Parameters: path (string) - the path to the markdown file, edits (array of objects) - a list of edits where each edit contains oldText and newText.
Search for documents within the markdown files based on a query. Parameter: query (string) - the search term.
Generate a navigation structure for the markdown documents.
Analyze the health of the documentation and identify issues such as missing metadata or broken links.