pricempire-mcp
Provides tools to query and analyze a Counter-Strike 2 trader portfolio, including total value, category breakdowns, top holdings, and price comparisons across marketplaces.
Allows price comparison and historical price data for in-game items from the Steam marketplace.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pricempire-mcpWhat's my portfolio worth right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pricempire MCP Server
A Model Context Protocol (MCP) server for querying your Pricempire CS2 (Counter-Strike 2) trader portfolio: total value, breakdowns by category, top holdings, cross-marketplace price comparison, and price history.
Built on nt4f04uNd/pricempire, a fork of the official
@pricempire/api Node.js client that adds
support for the real Trader Portfolio API (/v4/trader/*), which the published npm package
does not implement.
This server is read-only / on-demand: it answers questions about your portfolio when asked. It does not run alerts, bots, or schedulers.
What it is useful for
This MCP server is useful when you want an LLM agent to help you inspect your Pricempire portfolio without manually clicking around the UI or exporting data.
Typical use cases:
check your total portfolio value, invested amount, unrealized P/L, and ROI
see your most valuable items and how concentrated your portfolio is
break down value by category such as skins, containers, agents, gloves, and charms
compare item prices across marketplaces
inspect historical price data for a specific item or marketplace source
build portfolio summaries or visualizations in a separate skill layer
Related MCP server: zerion-mcp
How to start using it
The normal flow is:
Build this repository and configure your Pricempire API key.
Register the server in your MCP client.
Ask your agent questions about your portfolio.
Examples of the kinds of prompts this enables:
"What's my portfolio worth right now?"
"Show me my top 10 most valuable items."
"How much of my portfolio is in cases versus skins?"
"Which items have the biggest unrealized losses?"
"Visualize my portfolio by category."
Visualization skills
If you want a higher-level presentation layer on top of this MCP server, see
pricempire-mcp-cs-tools.
That repository contains CS2-specific skills, prompts, and example visualizations built on top of the tools exposed here. The intended split is:
pricempire-mcp: data access and portfolio analysis toolspricempire-mcp-cs-tools: visualization-oriented skill layer
Prerequisites
Node.js 18 or newer
A Pricempire API key with Trader tier access (portfolio value/holdings are a Trader-tier feature; see pricempire.com account settings). Cross-marketplace price lookup tools (
get_item_prices,get_price_history) additionally require v3/v4 market data access depending on your plan.
Setup
npm install
cp .env.example .env
# edit .env and set PRICEMPIRE_API_KEY (and optionally DEFAULT_CURRENCY / DEFAULT_SOURCES)
npm run build.env is git-ignored — never commit real API keys. .env.example documents each variable with
placeholder values only.
Environment variables
Variable | Required | Description |
| Yes | Your Pricempire API key (UUID v4). |
| No | Default currency code (e.g. |
| No | Comma-separated default marketplace sources (e.g. |
Portfolios themselves aren't selected via env vars — the account tied to PRICEMPIRE_API_KEY may
have multiple named portfolios (e.g. "Main portfolio", "Secondary portfolio"); tools default to all
of them combined, or accept an optional portfolio name/slug filter per call.
Running
npm run dev # run directly from TypeScript source with tsx (auto-reload)
npm run build # compile to dist/
npm start # run the compiled server (node dist/index.js)The server communicates over stdio, per the MCP stdio transport convention.
Registering with an MCP client
Add an entry pointing at the built dist/index.js. Example mcp.json-style configuration:
{
"mcpServers": {
"pricempire": {
"command": "node",
"args": ["/absolute/path/to/pricempire-mcp/dist/index.js"],
"env": {
"PRICEMPIRE_API_KEY": "your-pricempire-api-key",
"DEFAULT_CURRENCY": "USD",
"DEFAULT_SOURCES": "buff163,steam"
}
}
}
}Adjust the path and the exact config file/format for your MCP client (e.g. Copilot CLI, Claude Desktop, etc.).
Quick start checklist
Copy
.env.exampleto.env.Set
PRICEMPIRE_API_KEY.Run
npm install.Run
npm run build.Register
dist/index.jsin your MCP client.Restart or reload the MCP client if needed.
Ask a portfolio question such as "Analyze my portfolio."
Available tools
Tool | Description |
| Total value, 24h change, invested amount, profit/loss and ROI for your trader portfolio(s), per portfolio and combined. Optional |
| Full item list across your portfolio(s) (price, holdings, float, paint seed, stickers, category, avg buy price, unrealized P/L, ROI), sorted by value descending, with optional |
| Current prices for one or more items by |
| Historical price data for a marketplace source over N days. |
| One-shot structured analysis: total value/invested/P&L/ROI, category breakdown with percentages, top N holdings, unpriced item count. Returns JSON for the calling agent to narrate. |
Every tool catches API errors (invalid/missing key, rate limiting, plan restrictions, server
errors) and returns a structured error object ({ error: true, kind, message, detail }) instead
of throwing, so a calling agent can explain the problem in plain language.
Companion Copilot skill
See skills/pricempire-portfolio/SKILL.md for guidance an
LLM agent can use to combine these tools when answering common portfolio questions.
Notes & limitations
Portfolio tools (
get_portfolio_value,list_portfolio_items,analyze_portfolio) use the Pricempire Trader API (/v4/trader/portfolios*), via thent4f04uNd/pricempirefork depended on inpackage.json("@pricempire/api": "github:nt4f04uNd/pricempire#main"). The published npm package does not implement these endpoints — see that fork's README for details on what was added.This is currently built on a fork because upstream
@pricempire/apidoes not yet expose the Trader Portfolio API. Upstream tracking issue: pricempire/pricempire#3.get_item_pricesandget_price_historyuse the market-wide v3/v4 endpoints from the original package and require separate plan access from the Trader tier; if your key doesn't have that access, these tools return a structuredauth/forbiddenerror rather than crashing.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nt4f04uNd/pricempire-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server