tutti-mcp
MCP server to search tutti.ch Swiss classifieds anonymously with tools for listings, categories, and localities. Supports both MCP clients and a JSON CLI.
README
🇨🇭 tutti MCP
Search tutti.ch Swiss classifieds from your AI agent or the command line — anonymous and read-only by design.
A Model Context Protocol server that gives any MCP-capable agent (Claude, Codex, Cursor, …) the ability to search listings on tutti.ch, fetch listing details, browse categories, and resolve Swiss localities. The same search core also ships as a tutti CLI with JSON output — handy for scripts and shell-based agents.
Ask your agent things like:
- "Search tutti for a bike under 300 CHF in Zürich."
- "Find free sofas within 10 km of Bern."
- "Get details for tutti listing 81828298."
- "Which tutti categories are there for furniture?"
Why read-only? No login, no messaging, no favorites, no posting, no bulk export. Nothing this server does can touch your account or spam sellers — an agent can browse freely with zero risk. See Safety model.
Quick start
npx -y tutti-mcp
The server speaks MCP over stdio, so you normally don't run it by hand — you point your MCP client at it and let the client spawn it. Pick your client below. Requires Node.js 20+.
<details> <summary><strong>Claude Code</strong></summary>
claude mcp add tutti -- npx -y tutti-mcp
Restart Claude Code or start a new session after adding the server, then check /mcp.
</details>
<details> <summary><strong>Claude Desktop</strong></summary>
Add this to your claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"tutti": {
"command": "npx",
"args": ["-y", "tutti-mcp"]
}
}
}
Restart Claude Desktop after editing the file. </details>
<details> <summary><strong>Codex</strong></summary>
codex mcp add tutti -- npx -y tutti-mcp
Start a new Codex session after adding the server (MCP tools aren't injected into a running turn), then confirm with /mcp in the TUI.
</details>
<details> <summary><strong>Cursor / other JSON-config clients</strong></summary>
Most clients accept a config of this shape:
{
"mcpServers": {
"tutti": {
"command": "npx",
"args": ["-y", "tutti-mcp"]
}
}
}
</details>
No credentials, no configuration — the server works anonymously out of the box.
Tools
All listing URLs use https://www.tutti.ch/de/vi/<listingID>. Prices are returned as tutti.ch formats them, in CHF — for example "40.-".
| Tool | Purpose | Auth required | Writes? |
|---|---|---|---|
search_listings |
Search listings by query, category, price range, locality, radius, sort, and cursor. | No | No |
get_listing |
Fetch compact detail for one listing id, including description, seller, and up to five image URLs. | No | No |
get_categories |
Return { id, label, children } category nodes; ids are usable as categoryId. |
No | No |
search_localities |
Search Swiss locality names before using location filters. | No | No |
search_listings returns nextCursor when another page is available — pass that value back as cursor to get the next page.
When location is provided, the server resolves the text to the top matching Swiss locality. Use search_localities first when the place name is ambiguous or misspelled.
Suggested workflows
Find listings near a place
search_localitiesfor the place name if ambiguity matters.search_listingswithlocation, optionalradiusKm, and price filters.- Follow
nextCursorwith anothersearch_listingscall for page 2. get_listingfor the items that need full details.
Browse by category
get_categories→ 2. pick a categoryid→ 3.search_listingswithcategoryId.
CLI
The package also installs a tutti bin with subcommands mirroring the MCP tools:
# One-off with npx
npx -y -p tutti-mcp tutti search velo --max 300 --limit 5
# Or install globally
npm install -g tutti-mcp
tutti search velo --location "Zürich" --radius 10 --max 300
tutti get 81828298
tutti categories
tutti localities "zür"
Usage:
tutti search <query> [--category id] [--min n] [--max n] [--free] [--location name] [--radius km] [--sort timestamp] [--asc] [--cursor c] [--limit n]
tutti get <listingId>
tutti categories
tutti localities <query>
All commands print JSON to stdout — pretty-printed on a TTY, compact otherwise, so output pipes cleanly into jq. Errors go to stderr with exit code 1.
tutti search sofa --free --location Bern --radius 10 | jq '.listings[].title'
Safety model
This server performs anonymous read-only operations only.
- No credentials are accepted or needed.
- No listings are posted, edited, favorited, or messaged.
- No HTTP server is exposed; MCP uses stdio only.
- No raw upstream objects are returned to agents — responses are mapped to compact, project-owned payloads.
- Upstream requests are throttled to avoid rapid repeated traffic and retried only for transient failures.
Troubleshooting
| Symptom | Fix |
|---|---|
| MCP client doesn't show the tools | Restart the client or start a new session so it respawns the server. |
location matches the wrong place |
Run search_localities first, then use a more specific place name. |
| Search fails with a rate-limit message | Wait a few minutes before retrying; the upstream API is behind Cloudflare. |
| CLI output is one line | Expected when stdout is not a TTY — pipe it through jq if needed. |
| Live tests are skipped | Set TUTTI_LIVE=1 explicitly. |
| Inspector command opens a UI instead of running once | Add --cli and an explicit --method, as shown below. |
Develop from source
git clone https://github.com/domwoe/tutti-mcp.git
cd tutti-mcp
npm install
npm run build
Point a client at the built entrypoint:
claude mcp add tutti -- node /absolute/path/to/tutti-mcp/dist/mcp.js
Verification
npm run typecheck
npm test
npm run build
Live smoke tests against the real upstream API are skipped by default:
TUTTI_LIVE=1 npm test
Manual MCP checks with the inspector:
npx @modelcontextprotocol/inspector --cli --method tools/list node dist/mcp.js
npx @modelcontextprotocol/inspector --cli node dist/mcp.js --method tools/call --tool-name search_listings --tool-arg query=velo --tool-arg priceMax=300
Manual CLI check:
node dist/cli.js search velo --max 300 --limit 5
Legal caveat
This package uses a reverse-engineered private API via the tutti-api npm package. tutti.ch has no official public API, and its Nutzungsbedingungen prohibit automated queries and reproduction of listings. This project is intended for personal and prototype use only — it deliberately provides no bulk-export or scraping features. Use it responsibly and respect tutti.ch's terms and rate limits.
Disclaimer
This is an unofficial community project and is not affiliated with tutti.ch or SMG Swiss Marketplace Group.
License
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。