name: meldoc-overview description: Overview of the Meldoc MCP integration, available tools, authentication, and workspace management. Use when users ask what Meldoc can do, how to authenticate, how to manage workspaces, or need a summary of available document operations.
Connect to your Meldoc documentation directly from Claude Desktop, Claude Code, and other MCP clients.
Overview
Meldoc MCP provides seamless access to your Meldoc documentation workspace through the Model Context Protocol. Once configured, you can interact with your documentation naturally through AI conversations.
Available Tools
Document Operations
docs_list- List all documents in a workspace or projectdocs_get- Get the complete content of a specific documentdocs_tree- Display the hierarchical structure of documents in a projectdocs_search- Search through all documents using full-text searchdocs_create- Create a new document (requires write permissions)docs_update- Update an existing document's content or metadata (requires write permissions)docs_delete- Delete a document (requires write permissions)docs_links- Show all outgoing links from a documentdocs_backlinks- Find all documents that link to a specific document
Project Operations
projects_list- List all projects available in your workspace
Management Operations
server_info- Get information about your account and access permissionslist_workspaces- Show all workspaces you have access toset_workspace- Set the default workspace for operationsget_workspace- Get information about the currently active workspaceauth_status- Check your current authentication status
Usage Examples
Simply ask Claude naturally! For example:
- "Show me all documents in the API project"
- "Find information about authentication"
- "Search for documents about error handling"
- "Create a new document about our deployment process"
- "Which documents link to the database schema?"
- "Show me the document tree for the frontend project"
- "Update the getting started guide with new information"
Your AI assistant will automatically:
- Select the appropriate tool
- Handle authentication
- Format the results nicely
- Provide context and explanations
Authentication
Before using Meldoc MCP, you need to authenticate:
npx @meldocio/mcp-stdio-proxy@latest auth login
This will open a browser flow for secure authentication. Your credentials are stored locally and automatically refreshed.
Workspace Management
If you have multiple workspaces, you can:
- List all workspaces:
npx @meldocio/mcp-stdio-proxy@latest config list-workspaces - Set default workspace:
npx @meldocio/mcp-stdio-proxy@latest config set-workspace <name> - Or specify workspace in requests directly
Permissions
Some operations require write permissions to your workspace:
- Creating documents
- Updating documents
- Deleting documents
Read-only operations (list, get, search) work with any authenticated account.
Meldoc Document Format
When creating or updating documents, remember:
- File extension:
*.meldoc.md - YAML frontmatter required: Every document must start with frontmatter containing
titleandalias - No H1 in content: Title comes from frontmatter, content starts with H2
- Magic links: Use
[[alias]]for internal document links - Hierarchy: Use
parentAliasto organize documents
See the documentation-writing skill for detailed writing guidelines.