letgo-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| letgo_set_locationA | Set the search location for Letgo. Must be called before any search. Provide a Turkish city name (e.g. 'İzmir', 'İstanbul', 'Ankara'). |
| letgo_search_suggestionsB | Get autocomplete search suggestions from Letgo for a given query. |
| letgo_search_listingsB | Search listings on Letgo with filters for price, sorting, and pagination. Returns listing cards with ID, title, price, location, and thumbnail. |
| letgo_get_listing_detailsA | Get full details of a specific listing including description, seller info, all images, and attributes. |
| letgo_refresh_sessionA | Refresh the anti-bot session cookies. Call this if searches start returning errors or empty results. |
| letgo_debug_networkB | Navigate to a search URL and capture all API/network calls made by the page. Useful for discovering which API endpoints Letgo uses. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct function: network debugging, listing details, session management, search, suggestions, and location setting. No overlap in purpose, making it clear which tool to use for each task.
All tools follow a consistent 'letgo_verb_noun' pattern in snake_case, e.g., 'letgo_search_listings', 'letgo_set_location'. This uniformity makes the tool set predictable and easy to navigate.
With 6 tools, the server is well-scoped for a classifieds search and details service. Each tool serves a necessary role without redundancy, and the count feels appropriate for the domain.
The tool set covers the core workflow: setting location, searching, getting suggestions, and viewing details. Missing listing management (create/update/delete) or user operations, but for a read-heavy use case (scraping/searching) it is largely complete.