letgo-mcp
The letgo-mcp server provides a programmatic interface to search, browse, and retrieve listings from Letgo.com (Turkey) via browser automation (Playwright), with no API key required.
Set search location (
letgo_set_location): Set a Turkish city (e.g., İstanbul, Ankara, İzmir) and optionally a district — required before performing any search.Get autocomplete suggestions (
letgo_search_suggestions): Retrieve search suggestions from Letgo for a given query string.Search listings (
letgo_search_listings): Find listings with filters for price range (in TRY), sorting (by price, date, or distance), category, and pagination.View listing details (
letgo_get_listing_details): Fetch full details for a specific listing, including description, seller info, all images, and attributes.Refresh session (
letgo_refresh_session): Renew Akamai anti-bot session cookies when searches return errors or empty results.Debug network requests (
letgo_debug_network): Capture and inspect all API/network calls made by Letgo.com for a given search query, useful for discovering internal endpoints.
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., "@letgo-mcpsearch for iPhone in Istanbul"
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.
letgo-mcp
A Model Context Protocol (MCP) server for searching listings, viewing listing details, and applying filters on Letgo.com. It uses Playwright browser automation to bypass Letgo's Akamai anti-bot protection and accesses data in a way that closely mimics real user behavior.
Features
City and district-level location setting
Autocomplete search suggestions
Listing search (with price range, sorting, category, and pagination support)
Individual listing details (description, seller info, images)
Infinite scroll — automatically clicks "Load More" to collect all results
Session refresh against Akamai anti-bot protection
Network request debugging via interception
No API keys required
Related MCP server: OLX MCP Server
Requirements
Node.js v22 or higher
npm (ships with Node.js)
Playwright browser engine (downloaded automatically during setup)
Installation
# Clone the repository
git clone <repo-url>
cd letgo-mcp
# Install dependencies
npm install
# Download the Playwright browser
npx playwright install chromium
# Build the project
npm run buildAfter building, executable JavaScript files will be available under the dist/ directory.
MCP Configuration
letgo-mcp runs as a stdio MCP server. Add it to any MCP-compatible client (Claude Desktop, OpenCode, etc.) as follows:
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"letgo-mcp": {
"command": "node",
"args": ["/path/to/letgo-mcp/dist/index.js"]
}
}
}OpenCode
Add to .opencode.json:
{
"mcpServers": {
"letgo-mcp": {
"command": "node",
"args": ["/path/to/letgo-mcp/dist/index.js"]
}
}
}Replace the path with the full path to your project.
Usage
The tools must be called in the correct order. Follow this flow:
Set location — Use
letgo_set_locationto set the target city for searches. This must be called before every search.Search — Use
letgo_search_listingsto search listings. Optionally, useletgo_search_suggestionsto get autocomplete suggestions.Details — Use
letgo_get_listing_detailsto view the full details of a listing.Maintenance — If session issues arise, call
letgo_refresh_session. Useletgo_debug_networkto inspect network requests.
Running from the Command Line
# Build
npm run build
# Run (as stdio MCP server)
npm start
# Development mode (build + run)
npm run devTools Reference
Tool | Description | Parameters |
| Sets the search location. Must be called before any search. |
|
| Returns autocomplete suggestions for a given query. |
|
| Searches listings on Letgo. Supports filtering, sorting, and pagination. |
|
| Returns full details of a listing including title, description, seller info, images, and attributes. |
|
| Refreshes Akamai anti-bot cookies. Use when search results return empty or errors occur. | No parameters |
| Navigates to a search page and captures all API/network calls made by the page. Useful for discovering which endpoints are used. |
|
Architecture
The project consists of two main components:
Session Management (session.ts): Spawns a Chromium browser instance via Playwright. The browser runs in headless: false (visible) mode. Several measures are taken to bypass Letgo's Akamai bot detection:
Realistic user agent and viewport configuration
Hiding the
navigator.webdriverflagTurkish language and Istanbul timezone settings
API calls are made using
page.evaluate(fetch)so the browser's existing cookies and session data are usedIf the browser crashes or an error occurs, it is automatically restarted
API Client (api-client.ts): Accesses Letgo's internal API endpoints (/api/suggestions) and listing pages through the DOM. Search results are collected via DOM scraping: the "Load More" button is automatically clicked to simulate infinite scroll, then listing cards are extracted using the a[href*="/item/"] selector.
Tool Handler (index.ts): Defines 6 tools via the MCP SDK. Routes incoming requests to functions in api-client.ts and session.ts. Input and output schemas are defined according to MCP standards.
Data Flow
MCP Client -> stdio -> index.ts (handler) ->
api-client.ts -> session.ts (Playwright) -> Letgo.comAll HTTP requests are made from within the browser context, ensuring Letgo's session and cookie mechanisms work seamlessly.
Important Notes
No API key required. It works through Letgo's own web interface — no official API is used.
Browser runs visible (
headless: false). Letgo's Akamai anti-bot may block headless browsers, so the browser window stays open.Location is required. No search can be performed without calling
letgo_set_location. City names must be entered with Turkish characters (e.g., "İzmir", "İstanbul", "Ankara").Session durations are limited. Letgo's Akamai cookies remain valid for a limited time. Use
letgo_refresh_sessionto renew the session.Rate limiting. Sending too many requests in quick succession may cause Letgo to temporarily restrict access. Session refresh usually resolves this.
DOM scraping. Search results are extracted from Letgo's HTML DOM. If Letgo changes their UI, the scraping selectors may need to be updated.
Turkey only. Designed for the Letgo Turkey platform. Location data covers Turkish cities.
Maintenance
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/SERDAR-AKIN/letgo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server