shueisha-arts-and-digital/docbase-mcp-server
If you are the rightful owner of docbase-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The official MCP Server for Docbase has been released, providing a robust solution for integrating with Docbase's API services.
公式の MCP Server が発表されましたのでそちらを使ってください
Requirements
- Nodejs 20 以上, NPM 10 以上
機能
Install
- 下記のように docbase-mcp-server の設定を追加します。
- DOCBASE_API_TOKEN は、https://your-domain-here.docbase.io/settings/tokens/new で取得します
- DOCBASE_DOMAIN は、https://your-domain-here.docbase.io ならば、your-domain-here です
{
"mcpServers": {
"docbase": {
"autoApprove": ["search_posts", "get_post"], // create_post と update_post は承認が必要です
"disabled": false,
"timeout": 60,
"command": "npx",
"args": [
"-y",
"https://github.com/shueisha-arts-and-digital/docbase-mcp-server"
],
"env": {
"DOCBASE_API_TOKEN": "****", // Get token here https://your-domain-here.docbase.io/settings/tokens/new
"DOCBASE_DOMAIN": "your-domain-here" // https://your-domain-here.docbase.io
},
"transportType": "stdio"
}
}
}