tcgplayer-api-mcp
Provides access to TCGplayer trading card data, including search, product details, pricing, and market information, enabling natural language queries for card analysis.
README
TCGplayer API
An SDK and REST API wrapper for TCGplayer providing structured access to trading card data including Pokemon, Magic: The Gathering, and other TCGs — with an MCP server for Claude Code integration.
Disclaimer: This SDK, REST API wrapper, and MCP server is an unofficial tool created for educational purposes only. It is not affiliated with, maintained, or endorsed by TCGplayer. Use of these tools may violate TCGplayer's terms of service.
Installation
npm install @deansasek/tcgplayer-api
SDK
The SDK provides a typed, class-based interface organized by resource.
import { TCGplayerClient } from '@deansasek/tcgplayer-api/sdk';
const client = new TCGplayerClient();
// Search
const results = await client.search.autocomplete('morpeko');
// Product details
const product = await client.products.details(704874);
// Price history
const history = await client.products.priceHistory(704874, { range: 'quarter' });
SDK Resources
| Resource | Methods |
|---|---|
client.products |
details(), listings(), sales(), priceHistory(), volatility(), buylistPrice(), infinite(), recommendations() |
client.search |
autocomplete(), fullSearch(), bestsellers(), trending() |
client.pricing |
skuMarketPrices() |
client.catalog |
productLines(), categoryFilters(), latestSets(), setName(), catalogGroups(), verticals(), countryCodes() |
client.content |
articles(), trendingArticles(), tags(), kickbacks(), normalizeCardName() |
SDK Example: Card Analysis
import { TCGplayerClient } from '@deansasek/tcgplayer-api/sdk';
const client = new TCGplayerClient();
async function analyzeCard(productId: number) {
const [details, sales, history] = await Promise.all([
client.products.details(productId),
client.products.sales(productId),
client.products.priceHistory(productId, { range: 'month' }),
]);
console.log(`${details.productName} (${details.setName})`);
console.log(`Market Price: $${details.marketPrice}`);
console.log(`Sellers: ${details.sellers}`);
if (sales.data.length > 0) {
const last = sales.data[0];
console.log(`Last Sale: $${last.purchasePrice} (${last.condition})`);
}
return { details, sales, history };
}
analyzeCard(704874); // Morpeko ex
REST API (Backward Compatible)
Flat function exports for direct API access.
import { autocomplete, getProduct } from '@deansasek/tcgplayer-api';
autocomplete(query, options?)
Search for products by name.
const results = await autocomplete('charizard', { productLine: 'Pokemon' });
search(options?)
Full search with filters, sorting, and pagination.
const results = await search({
q: 'charizard',
productLine: 'Pokemon',
from: 0,
size: 24,
});
getProduct(productId)
Convenience function combining details, sales, and price history.
const product = await getProduct(704874);
// Returns: { details, sales, priceHistory }
Other Functions
| Function | Description |
|---|---|
getProductDetails(id) |
Full product information |
getLatestSales(id, options?) |
Recent sales with filters |
getPriceHistory(id, options?) |
Historical pricing (range: week|month|quarter|year) |
getVolatility(skuId) |
Market volatility for a SKU |
getBuylistPrice(id) |
Buylist/market prices |
getSkuMarketPrices(skuIds) |
Bulk SKU pricing |
getProductListings(id, options?) |
Detailed seller listings |
getProductLines() |
All available product lines |
getCategoryFilters(categoryId?) |
Filter options for a category |
getLatestSets(productLineIds?) |
Latest sets |
getSetName(setId) |
Set information |
getFacetedRecommendations(productIds, options?) |
Related products |
getKickbacks() |
Active promotions |
getTags() |
Product attribute tags |
getVerticals() |
Game verticals |
getBestsellers(options?) |
Best-selling products |
getTrending(options?) |
Trending suggestions |
getCatalogGroups() |
TCG vs Tabletop categories |
getFreeShippingThreshold() |
Free shipping minimum |
getCountryCodes() |
Shipping country list |
getArticles(options?) |
Articles by vertical |
getTrendingArticles(options?) |
Trending articles |
getInfiniteProduct(id) |
Simplified product data |
normalizeCardName(name) |
Normalize card name |
Condition Values
| Value | Condition |
|---|---|
| 1 | Unopened |
| 2 | Damaged |
| 3 | Heavily Played |
| 4 | Moderately Played |
| 5 | Lightly Played |
| 6 | Near Mint |
| 7 | Mint |
MCP Server (Claude Code Integration)
The MCP server enables Claude Code to interact with TCGplayer data directly.
Installation
Claude Code automatically detects .mcp.json:
{
"mcpServers": {
"tcgplayer-api-mcp": {
"command": "node",
"args": ["dist/mcp/server.js"],
"cwd": "/Users/deansasek/Documents/Projects/tcgplayer"
}
}
}
Available MCP Tools
| Tool | Description |
|---|---|
tcgplayer_autocomplete |
Search for products by name |
tcgplayer_search |
Search with filters and pagination |
tcgplayer_product |
Full product data (details, sales, price history) |
tcgplayer_product_details |
Detailed product information |
tcgplayer_latest_sales |
Recent sales data |
tcgplayer_price_history |
Historical pricing data |
tcgplayer_volatility |
Market volatility for a SKU |
tcgplayer_buylist_price |
Buylist/market prices |
tcgplayer_category_filters |
Filter options (conditions, languages, variants) |
tcgplayer_product_lines |
All available product lines |
tcgplayer_latest_sets |
Latest sets for product lines |
tcgplayer_product_listings |
Detailed seller listings |
tcgplayer_set_name |
Set information by set ID |
tcgplayer_recommendations |
Faceted product recommendations |
tcgplayer_kickbacks |
Active kickback promotions |
tcgplayer_tags |
Product attribute tags |
tcgplayer_verticals |
Available game verticals |
tcgplayer_bestsellers |
Best-selling products |
tcgplayer_trending |
Trending product suggestions |
tcgplayer_catalog_groups |
Catalog groups (TCG vs Tabletop) |
tcgplayer_free_shipping_threshold |
Free shipping minimum |
tcgplayer_country_codes |
Shipping country codes |
tcgplayer_articles |
Articles for a vertical |
tcgplayer_trending_articles |
Trending articles |
tcgplayer_infinite_product |
Simplified product data |
tcgplayer_normalize_card_name |
Normalize card name |
tcgplayer_render_card |
Render a card as ASCII art |
MCP Usage Examples
User: Search for Morpeko cards
Claude uses: tcgplayer_search with q="morpeko"
User: Get latest sales for product 704874
Claude uses: tcgplayer_latest_sales with productId=704874
User: What conditions are available for Pokemon?
Claude uses: tcgplayer_category_filters with categoryId="3"
User: Show me Charizard as ASCII art
Claude uses: tcgplayer_render_card with productId=546343
Development
npm run build # Compile TypeScript
npm run clean # Remove dist folder
npm run dev # Run server.ts directly
npm run mcp # Run MCP server directly
Environment
- Node.js 18+ recommended (uses native fetch)
- TypeScript with strict mode
- ES Modules (
type: "module")
License
This project is dedicated to the public domain under the Unlicense.
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。