loading…
Search for a command to run...
loading…
Enables users to manage package deliveries through the Parcel.app tracking API. It allows AI clients to list active or recent deliveries and add new packages di
Enables users to manage package deliveries through the Parcel.app tracking API. It allows AI clients to list active or recent deliveries and add new packages directly to a Parcel account using tracking numbers and carrier codes.
MCP server for the Parcel.app delivery tracking API. Lets Claude (and other MCP clients) list and add package deliveries in your Parcel account.
Download latest parcellapp-mcp.dxt
list_deliveriesList deliveries from your Parcel account. Returns cached data from the Parcel servers.
filter_mode (optional): "active" (in-progress only) or "recent" (default — active + recently completed)add_deliveryAdd a new delivery to your Parcel account.
tracking_number (required): The package tracking numbercarrier_code (required): Internal Parcel carrier code — see the full carrier list. Use "pholder" for a placeholder.description (required): A label for the deliverylanguage (optional): ISO 639-1 two-letter code, e.g. "en" (default), "de"send_push_confirmation (optional): true to get a push notification when added (default false)Note: Newly added deliveries show "No data available" until the Parcel server first updates them.
fetch)git clone https://github.com/as-j/parcellapp-mcp.git
cd parcellapp-mcp
npm install
npm run build
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"parcel": {
"command": "node",
"args": ["/absolute/path/to/parcellapp-mcp/dist/index.js"],
"env": {
"PARCEL_API_KEY": "your_api_key_here"
}
}
}
}
Restart Claude Desktop after saving.
Once configured, you can ask Claude things like:
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"parcel-app-mcp-server": {
"command": "npx",
"args": []
}
}
}