inpost-consumer-mcp
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., "@inpost-consumer-mcpshow me my recent InPost parcels"
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.
inpost-consumer-mcp
npm: inpost-consumer-mcp · GitHub: noxlabs-ai/inpost-consumer-mcp
Local MCP (Model Context Protocol) server and TypeScript client for the InPost mobile / consumer API — SMS login, list parcels, pickup codes, open a Paczkomat, returns, and tracking.
Works with Cursor, Claude Desktop, VS Code (MCP-enabled clients), and any host that supports MCP over stdio.
Table of contents
Related MCP server: MCP API Server
Why this project
InPost’s consumer mobile API powers “my parcels”, locker open, and returns — but it is not a polished public SDK. This package wraps that surface as:
An MCP server so AI assistants can list parcels, track shipments, and (with care) open a locker.
A typed TypeScript client you can import in your own scripts.
Auth is SMS OTP → JWT + refresh token, stored in a local multi-account config file and refreshed automatically.
Features
Feature | Description |
10 MCP tools | Login (SMS), sessions, parcels, locker open/finish, track, returns |
Multi-account | Several phone numbers in one local config (v2 store) |
Auto token refresh | Proactive expiry check + one 401 retry (not exposed as a tool) |
ShipX tracking | Public tracking via ShipX, with status cross-check on parcel lists |
Typed client | Import |
stdio MCP | Drop-in for Cursor / Claude Desktop / VS Code |
Quick start
Requirements: Node.js 20 or newer.
Published on npm as inpost-consumer-mcp — see the package page for the latest version.
Connect your AI client
Add this server entry to your MCP host’s configuration:
{
"mcpServers": {
"inpost-consumer": {
"command": "npx",
"args": ["-y", "inpost-consumer-mcp"]
}
}
}Save the config, enable the inpost-consumer server if your client exposes a toggle, then sign in with inpost_consumer_login_send_sms + inpost_consumer_login_confirm.
No InPost developer keys. The server uses stdio transport only. Sessions are stored on disk (see Configuration).
Run manually (optional)
npx -y inpost-consumer-mcpOr install globally:
npm install -g inpost-consumer-mcp
inpost-consumer-mcpGlobal install (optional)
If you ran npm install -g inpost-consumer-mcp:
{
"mcpServers": {
"inpost-consumer": {
"command": "inpost-consumer-mcp"
}
}
}Local development
{
"mcpServers": {
"inpost-consumer": {
"command": "node",
"args": ["/absolute/path/to/inpost-consumer-mcp/dist/cli.js"]
}
}
}Build first: npm install && npm run build.
Environment variables in MCP config
{
"mcpServers": {
"inpost-consumer": {
"command": "npx",
"args": ["-y", "inpost-consumer-mcp"],
"env": {
"INPOST_CONSUMER_CONFIG": "/custom/path/config.json"
}
}
}
}Tools
Auth uses the current mobile endpoints: POST /v1/account (send OTP) and POST /v1/account/verification (confirm). Parcels use GET /v4/parcels/tracked.
Tool | When to use |
| Send login SMS code |
| Confirm code and sign in |
| Sign out one or all phones |
| Show signed-in phones / expiry |
| List your parcels |
| Parcel details / pickup code |
| Open Paczkomat ( |
| End a pickup session |
| Track a shipment (ShipX) |
| List return tickets |
Safety: inpost_consumer_locker_open is destructive — anyone at the machine can take the parcel. Only call it when you are physically at the correct Paczkomat, and always pass confirm=true.
Configuration
Variable | Default | Description |
| OS app-config dir | Path to the local auth/config JSON |
| mobile API default | Override mobile API base URL |
| ShipX default | Override ShipX tracking base URL |
Library
import { InPostConsumerClient } from "inpost-consumer-mcp";
const client = new InPostConsumerClient();
await client.sendSmsCode("+48123456789");
await client.confirmSmsCode("+48123456789", "123456");
const parcels = await client.listParcels({ statuses: ["ready_to_pickup"] });Also exported: createMcpServer, ConfigStore, JWT helpers, status helpers, and TOOL_NAMES.
How it works
flowchart LR
Client[MCP client] -->|stdio| Server[inpost-consumer-mcp]
Server --> Store[Local config store]
Server --> Mobile[InPost mobile API]
Server --> ShipX[ShipX tracking]
Store --> JWT[JWT + refresh]The MCP host starts
inpost-consumer-mcpas a subprocess.Login tools exchange SMS OTP for tokens and write them to the local config file.
Parcel / locker / returns tools call the mobile API with auto-refreshed JWTs.
Tracking uses ShipX; parcel lists can cross-check public status.
Development
git clone https://github.com/noxlabs-ai/inpost-consumer-mcp.git
cd inpost-consumer-mcp
npm install
npm run gen # optional: types from openapi/inpost-mobile.yml
npm run typecheck
npm run build
npm run smoke
npm run pack:check # dry-run npm packOpenAPI under openapi/inpost-mobile.yml describes the mobile endpoints used by this client.
Project layout
src/
cli.ts # MCP stdio entrypoint (bin)
index.ts # Library exports
auth/ # Config store, JWT helpers, types
client/ # HTTP + InPostConsumerClient
mcp/ # Server, tools, env config
generated/ # Types from OpenAPI
openapi/
inpost-mobile.yml
scripts/
gen-types.mjs
smoke.mtsContributing
Contributions are welcome. Please:
Open an issue for larger changes.
Keep PRs focused; match existing TypeScript style.
Run
npm run typecheck && npm run buildbefore submitting.
Publishing
Package: https://www.npmjs.com/package/inpost-consumer-mcp
Repository: https://github.com/noxlabs-ai/inpost-consumer-mcp
For maintainers releasing a new version:
npm login
npm run pack:check
npm version patch # or minor / major
npm publishprepublishOnly runs typecheck and the build automatically.
Disclaimer
This project is not affiliated with InPost Sp. z o.o. or InPost Group.
It uses unofficial mobile API patterns that may change without notice.
Opening a locker remotely can allow anyone nearby to take the parcel — use that tool only when you are at the machine.
Use at your own risk; respect InPost terms of use and applicable law.
License
MIT © inpost-consumer-mcp contributors
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA demonstration MCP server built in TypeScript that shows how to implement stdio-based communication for integration with MCP clients. Serves as a template for building custom MCP servers with strong typing and maintainability.
- FlicenseCqualityDmaintenanceA modular MCP server that connects to external APIs, providing tools for weather data, user management, and company operations. Features a scalable architecture with TypeScript support, HTTP client abstraction, and robust error handling.5
- Flicense-qualityDmaintenanceA TypeScript MCP server implementation using Express.js that provides basic tools like echo, time retrieval, and calculator functionality. Features session management, RESTful API endpoints, and Server-Sent Events for streamable communication.
- Alicense-qualityDmaintenanceA horizontally scalable Model Context Protocol server for exposing shipment tracking (and other data sources) as authenticated MCP tools, starting with DB Schenker's public tracking endpoint.1MIT
Related MCP Connectors
A TypeScript MCP server for Home Assistant, enabling programmatic management of entities, automati…
A basic MCP server to operate on the Postman API.
A paid remote MCP for ShipSwift, built to return verdicts, receipts, usage logs, and audit-ready JSO
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/noxlabs-ai/inpost-consumer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server