工具 API
get_ doc_ resource
<use_case> Fetches a specific Neon documentation page as markdown content. Use the list_docs_resources tool first to discover available page slugs, then pass the slug to this tool. Use this tool when: - You have identified a specific docs page to fetch (from list_docs_resources results) - You need detailed guidance on a Neon feature, workflow, or configuration - The user needs step-by-step instructions for a Neon-related task </use_case> <workflow> 1. First call list_docs_resources to get the index of available pages 2. Pick the relevant page slug from the list (e.g. "docs/guides/prisma.md") 3. Call this tool with that slug to get the full page content as markdown </workflow> <important_notes> - The slug parameter is the path portion of the docs .md URL (e.g. "docs/connect/connection-pooling.md") - Slugs use .md file endings matching the URLs in the documentation index - Always use list_docs_resources first to discover the correct slug — do not guess slugs - This tool fetches the page directly from https://neon.com/{slug} as markdown - Returns the full documentation page content as markdown text </important_notes>
调用信息
- 工具标识
- mcp-server-neon.get_doc_resource
- 服务提供方
- Neon
- 平均响应
- 0 ms
- 近 7 天调用
- 0
输入参数
slug必填The docs page slug (path) to fetch, e.g. 'docs/guides/prisma.md'. Slugs use .md file endings matching the URLs in the documentation index. Use the list_docs_resources tool first to discover available slugs.