mcp-yuntrack
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., "@mcp-yuntracktrack package UJ123456789SE"
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.
mcp-yuntrack
MCP server (stdio transport) for tracking parcels via YunTrack.
How it works
The tracker navigates to the YunTrack parcel page and intercepts the POST response from
services.yuntrack.com/Track/Query using Playwright's waitForResponse. The raw JSON
is returned as-is — no field interpretation.
Build
npm install
npx playwright install chromium
npm run buildDevelopment & testing
npm run inspect # opens MCP Inspector in the browser — lets you call tools interactively
npm run dev # watch mode (tsc + node --watch)Installing in Claude Desktop
Open (or create)
~/Library/Application Support/Claude/claude_desktop_config.jsonAdd the server under
mcpServers:
{
"mcpServers": {
"yuntrack": {
"command": "/absolute/path/to/mcp-yuntrack/node_modules/.bin/tsx",
"args": ["/absolute/path/to/mcp-yuntrack/src/index.ts"]
}
}
}Restart Claude Desktop — the
track_parceltool is now available.
Installing in Claude Code (CLI)
Run once from any directory:
claude mcp add yuntrack /absolute/path/to/mcp-yuntrack/node_modules/.bin/tsx /absolute/path/to/mcp-yuntrack/src/index.tsRestart Claude Code. The tool is available in every project.
To confirm it loaded:
claude mcp listInstalling in Claude Code via project config
Add a .claude/mcp.json (or mcp.json) in your project root:
{
"mcpServers": {
"yuntrack": {
"command": "/absolute/path/to/mcp-yuntrack/node_modules/.bin/tsx",
"args": ["/absolute/path/to/mcp-yuntrack/src/index.ts"]
}
}
}This makes the server available to everyone who opens the project in Claude Code.
Tool: track_parcel
Single tracking number:
{ "trackingId": "UJ123456789SE" }Batch (up to any count, 3 concurrent pages):
{ "trackingIds": ["UJ123456789SE", "BCM987654321SE"] }Returns the raw JSON from the YunTrack Query API.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
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/waldell/mcp-yuntrack'
If you have feedback or need assistance with the MCP directory API, please join our Discord server