tutti-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., "@tutti-mcpsearch for a bike under 300 CHF in Zurich"
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.
π¨π 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-mcpThe 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+.
claude mcp add tutti -- npx -y tutti-mcpRestart Claude Code or start a new session after adding the server, then check /mcp.
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.
codex mcp add tutti -- npx -y tutti-mcpStart a new Codex session after adding the server (MCP tools aren't injected into a running turn), then confirm with /mcp in the TUI.
Most clients accept a config of this shape:
{
"mcpServers": {
"tutti": {
"command": "npx",
"args": ["-y", "tutti-mcp"]
}
}
}No credentials, no configuration β the server works anonymously out of the box.
Related MCP server: mcp-swiss
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 by query, category, price range, locality, radius, sort, and cursor. | No | No |
| Fetch compact detail for one listing id, including description, seller, and up to five image URLs. | No | No |
| Return | No | No |
| 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. |
| Run |
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 |
Live tests are skipped | Set |
Inspector command opens a UI instead of running once | Add |
Develop from source
git clone https://github.com/domwoe/tutti-mcp.git
cd tutti-mcp
npm install
npm run buildPoint a client at the built entrypoint:
claude mcp add tutti -- node /absolute/path/to/tutti-mcp/dist/mcp.jsVerification
npm run typecheck
npm test
npm run buildLive smoke tests against the real upstream API are skipped by default:
TUTTI_LIVE=1 npm testManual 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=300Manual CLI check:
node dist/cli.js search velo --max 300 --limit 5Legal 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
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.
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/domwoe/tutti-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server