allegro-mcp-searcher
Allows searching products on Allegro.pl, using the Allegro API to retrieve offer listings.
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., "@allegro-mcp-searcherFind me a cheap coffee maker on Allegro"
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.
allegro-mcp-searcher
MCP server that lets Claude Desktop search products on Allegro.pl.
Flow:
User (any language) -> Claude -> search_allegro tool -> Allegro API (Polish phrase) -> resultsClaude is responsible for translating the user's request into Polish before
calling the tool — see the tool's docstring in server.py.
Setup
Install dependencies (already done into
.venv):.venv\Scripts\python.exe -m pip install -r requirements.txtCreate your Allegro app credentials. You already have a Client ID (
claude mcp searcher,0705c183d13445bcaa0ae15d61b4f0b8). You also need its Client Secret, available on the same app page at https://apps.developer.allegro.pl/.Copy
.env.exampleto.envand fill in both values:ALLEGRO_CLIENT_ID=0705c183d13445bcaa0ae15d61b4f0b8 ALLEGRO_CLIENT_SECRET=<your secret>.envis gitignored — never commit it.
The server authenticates with Allegro using OAuth2 Client Credentials (app-only token), which is sufficient for public offer search — no user login required.
Production app verification
Since 2021, Allegro's GET /offers/listing endpoint only works for
verified applications when using Client Credentials — a freshly created
app (like claude mcp searcher) will get 403 AccessDenied until Allegro
verifies it. To request verification, use the contact form linked from the
offers/listing docs or, if you're in the
Partnership Program for Sellers, your account manager. There's no
self-service toggle for this.
Sandbox (no verification needed, for development)
While waiting for production verification, you can develop/test against Allegro's sandbox, which does not require a verified app. This needs a separate test account and a separate app registration (different Client ID/Secret from your production ones):
Create a sandbox account at https://allegro.pl.allegrosandbox.pl
Register an app at https://apps.developer.allegro.pl.allegrosandbox.pl to get a sandbox Client ID/Secret
In
.env, set:ALLEGRO_CLIENT_ID=<sandbox client id> ALLEGRO_CLIENT_SECRET=<sandbox client secret> ALLEGRO_ENV=sandbox
Sandbox product data is test data, not the real catalog — it's only useful
for verifying the OAuth/search flow works end-to-end. Switch ALLEGRO_ENV
back to production (or remove it, since that's the default) once your
production app is verified.
Related MCP server: Coupang MCP
Running standalone (sanity check)
.venv\Scripts\python.exe server.pyThis starts the MCP server on stdio and waits for a client to connect.
Registering in Claude Desktop
Edit Claude Desktop's config file
(%APPDATA%\Claude\claude_desktop_config.json) and add:
{
"mcpServers": {
"allegro-searcher": {
"command": "E:\\projects\\allegro-mcp-searcher\\.venv\\Scripts\\python.exe",
"args": ["E:\\projects\\allegro-mcp-searcher\\server.py"]
}
}
}Restart Claude Desktop. The search_allegro tool should then be available —
try asking "Найди зерновой кофе Lavazza до 60 злотых".
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
- Alicense-qualityDmaintenanceEnables product search and retrieval from e-commerce APIs, returning markdown-formatted product listings with clickable links and prices for easy shopping assistance.Last updated30MIT
- Alicense-qualityCmaintenanceEnables searching Coupang products and checking real-time lowest prices via Claude Desktop, with rocket delivery distinction and price formatting.Last updated17MIT
- Flicense-qualityDmaintenanceIntegrates the inFakt API with Claude AI, enabling management of invoices, clients, products, and payments through natural language in Polish.Last updated2
- Flicense-qualityDmaintenanceLets Claude search Amazon products via multiple keyword queries and present curated results in an interactive carousel widget with add-to-cart functionality.Last updated1
Related MCP Connectors
Search Rakuten Ichiba products and compare prices via Claude. Zero setup, no API key needed.
Search ~8.5M products from 2,500+ Central European e-shops. Semantic, keyword, GTIN lookup.
Search products, compare prices and discover deals across 6 European markets with your AI assistant.
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/andrewsakhno/allegro-mcp-searcher'
If you have feedback or need assistance with the MCP directory API, please join our Discord server