dtrpg-mcp
Enables searching your DriveThruRPG library and the public catalog for tabletop RPG products, returning structured details like title, description, publisher, and game system.
README
dtrpg-mcp
An MCP server that lets an LLM search your DriveThruRPG library and the public DriveThruRPG catalog for tabletop RPG products, returning structured details (title, description, publisher, authors, game system, and DriveThruRPG product id) for each match.
It speaks MCP over stdio and exposes two tools: search_library (your
purchased products) and search_products (the general public catalog).
Requirements
- Python >= 3.12
- A DriveThruRPG Application Key (see Getting an API key below)
Installation
pip install dtrpg-mcp
or, to run it without installing anything permanently:
uvx dtrpg-mcp
Configuration
The server needs one environment variable:
| Variable | Required | Description |
|---|---|---|
DTRPG_API_KEY |
Yes | Your DriveThruRPG Application Key, used to authenticate against the API. |
You can set it directly in your shell/MCP client config, or drop a .env
file next to your project (the server walks up from its own install
location looking for .env, so a .env in your working directory or a
parent of it will be picked up automatically via python-dotenv).
Getting a DriveThruRPG API key
- Log in to drivethrurpg.com.
- Go to My Account -> Application Keys (or open
https://www.drivethrurpg.com/en/account/application-keysdirectly). - Click Generate New Key, give it a name (e.g. "dtrpg-mcp"), and create it.
- Copy the generated key — this is your
DTRPG_API_KEY.
The key only grants access to your library and to the public product catalog search; it does not expose your payment details or let anything make purchases on your behalf.
Using it with an MCP client
Add it to your client's MCP server config. For example, in Claude Desktop's
claude_desktop_config.json:
{
"mcpServers": {
"dtrpg": {
"command": "uvx",
"args": ["dtrpg-mcp"],
"env": {
"DTRPG_API_KEY": "your-application-key-here"
}
}
}
}
If installed via pip instead of uvx, use "command": "dtrpg-mcp" with
no args.
Tools
Both tools return a list of product detail objects with the same shape:
| Field | Description |
|---|---|
product_id |
The DriveThruRPG product id. |
order_product_id |
The id of your specific purchased order/product; null for search_products results (not necessarily owned). |
title |
Product title. |
description |
A short description/blurb of the product. |
publisher |
Publisher name. |
authors |
List of author names (only populated by search_products — DriveThruRPG's library endpoint does not include author data). |
game_system |
Game system tag, when DriveThruRPG's API surfaces one for the product; otherwise null. |
search_library
Search products you've already purchased in your DriveThruRPG library.
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
query |
string | — | Text to match against product titles (case-insensitive substring match). |
max_values |
integer | 10 |
Maximum number of results to return. |
Example call — anything in your library with "dungeon" in the title:
{"query": "dungeon"}
Performance note: DriveThruRPG's library endpoint has no server-side title filter and is capped at 50 items per page, with each page taking several seconds to return. A query that matches nothing (or matches only late in a large library) can take tens of seconds to resolve, since pages are fetched in concurrent batches rather than one huge request. This is a limitation of the underlying API, not something a client-side change can fully eliminate.
search_products
Search the general public DriveThruRPG catalog for products — not limited to your library, so this also finds things you don't own.
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
query |
string | — | Text to match against product titles (keyword match). |
max_values |
integer | 10 |
Maximum number of results to return. |
Example call — search the catalog for "bardo", capped to 5 results:
{"query": "bardo", "max_values": 5}
Notes on the DriveThruRPG API
DriveThruRPG does not publish official API documentation. This client's
endpoint usage was reverse-engineered from the community projects
glujan/drpg and
quickwick/drivethrurpg-calibre-plugin,
and verified empirically against the live API. Notably, the per-product
detail endpoint (GET products/{id}) returns 403 for Application Keys
like the one this tool uses (it appears to require a different auth scope),
so search_library and search_products build product details from the
library (order_products) and catalog search (products) list endpoints
instead, both of which work with a standard Application Key.
Development
uv sync
uv run pytest
Run the server directly for manual/stdio testing:
uv run dtrpg-mcp
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。