MCP.so
ログイン

Docbase Mcp Server

@pj8

Docbase Mcp Server について

概要はまだありません

基本情報

カテゴリ

その他

ランタイム

node

トランスポート

stdio

公開者

pj8

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "docbase": {
      "autoApprove": [
        "search_posts",
        "get_post"
      ],
      "disabled": false,
      "timeout": 60,
      "command": "npx",
      "args": [
        "-y",
        "https://github.com/pj8/docbase-mcp-server"
      ],
      "env": {
        "DOCBASE_API_TOKEN": "****",
        "DOCBASE_DOMAIN": "your-domain-here"
      },
      "transportType": "stdio"
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Docbase Mcp Server?

Docbase Mcp Server is an MCP server that enables searching and retrieving posts from Docbase, a Japanese documentation service. It is designed for use with MCP-compatible clients like Cline (VSCode extension). The server provides two primary tools: search_posts and get_post, allowing AI assistants to access Docbase content programmatically.

How to use Docbase Mcp Server?

Configure the server in your MCP client’s settings (e.g., VSCode > CLINE > Configure MCP Servers) by adding a JSON entry. Set DOCBASE_API_TOKEN (obtained from your Docbase account’s token page) and DOCBASE_DOMAIN (your Docbase subdomain). The server runs via npx using the command npx -y https://github.com/pj8/docbase-mcp-server with stdio transport.

Key features of Docbase Mcp Server

  • Search posts using Docbase’s search API.
  • Retrieve full details of a specific post.
  • Works with MCP clients supporting the stdio transport.
  • Auto-approves search_posts and get_post tools.
  • Requires Node.js 20+ and npm 10+.

Use cases of Docbase Mcp Server

  • An AI assistant finds relevant Docbase documentation to answer user questions.
  • Automatically fetch the latest company wiki entries for context-aware responses.
  • Integrate Docbase knowledge into development workflows via Cline.

FAQ from Docbase Mcp Server

What is the relationship to the official Docbase MCP server?

The README states that the official Docbase MCP server has been released and recommends using that package instead of this server. This server may be considered a community alternative.

What runtime dependencies are required?

Node.js version 20 or higher and npm version 10 or higher are required.

How do I obtain the API credentials?

Generate a Docbase API token at https://your-domain-here.docbase.io/settings/tokens/new and set your domain (the subdomain before .docbase.io) as DOCBASE_DOMAIN.

What tools are auto-approved?

search_posts and get_post are listed under autoApprove in the configuration example.

What transport does the server use?

The server uses the stdio transport type and has a default timeout of 60 seconds.

コメント

「その他」の他のコンテンツ