@muovi/mcp-server
This server provides a read-only interface to Muovi's LATAM service marketplace, enabling discovery of verified professionals, browsing of service catalogs, viewing reviews, and generating deep-links for task creation. Contact details (phone, email, WhatsApp) are never returned — all professional contact happens through Muovi's on-platform flow.
Search professionals (
muovi_search_professionals): Find verified service professionals in Argentina by service type, city, neighborhood, identity verification, professional license (matrícula), minimum rating, and minimum review count.Get a professional's profile (
muovi_get_professional): Retrieve a full public profile including bio, portfolio images, specialties, services offered, city/neighborhoods, ratings, verifications, and aprofile_url.List services (
muovi_list_services): Browse the complete service catalog (e.g. electricidad, plomería, pintura), each with aslug, human-readablename, and arequires_matriculaflag.List cities (
muovi_list_cities): Get every Argentine city and its nested neighborhoods that Muovi serves, to resolve user location input into valid city/neighborhood slugs.Get reviews (
muovi_get_reviews): Fetch paginated, most-recent-first reviews for a professional, including ratings, comments, service category, and author details.Create a task deep-link (
muovi_create_task_link): Generate a canonical URL that drops the user into Muovi's on-platform task creation flow pre-filled with a specific professional and service (pure URL formatter — no network call).
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., "@@muovi/mcp-serverI need an electrician in Palermo with high ratings"
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.
@muovi/mcp-server
Model Context Protocol (MCP) server for Muovi — LATAM's trust-first local services marketplace.
This package lets MCP-aware clients (Claude Desktop, Cursor, Claude Code, and any other MCP host) discover Muovi's verified LATAM service professionals, browse the service catalog and city list, read reviews, and deep-link a user into the on-platform task-creation flow. It is a thin, read-only wrapper over Muovi's public /v1 REST API.
Stdio mode. The package ships an npx-runnable binary that speaks JSON-RPC over stdin/stdout. The hosted HTTP/SSE variant is tracked separately (Muovi MOB-142).
What it exposes
Six tools, all read-only:
Tool | Wraps | Purpose |
|
| Search verified pros by service, city, neighborhood, verification status, min rating, min review count. |
|
| Fetch a single pro's full public profile (bio, portfolio, specialties, verifications). |
|
| The full live service catalog. |
|
| Every Argentine city Muovi serves, with neighborhoods. |
|
| Paginated reviews for a pro, most-recent first. |
| (pure formatter) | Builds the canonical deep-link the user should follow to start a task with a specific pro for a specific service. Makes no HTTP call. |
Related MCP server: mcp-colombia
Anti-leakage policy
Muovi is on-platform-only. Phone, email, and WhatsApp handles are never returned by the public API — contact between consumers and professionals happens exclusively through Muovi's in-app conversation flow, reachable from each pro's profile_url.
This server enforces the policy twice:
The
/v1API strips contact data server-side.Every tool response in this package also runs through a local anti-leakage detector (a Node-compatible mirror of
src/lib/anti-leakage/detector.tsin the Muovi web repo). If a leak is detected at the agent boundary the tool returns a stable error to the LLM client and refuses to surface the payload.
Hosts that integrate this server must not synthesise off-platform contact handles from any field. Driving the user to profile_url (optionally with the deep-link query string) is the only sanctioned contact channel.
Installation & configuration
Claude Desktop
Open ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows) and add the server under mcpServers:
{
"mcpServers": {
"muovi": {
"command": "npx",
"args": ["-y", "@muovi/mcp-server"]
}
}
}If you have a Muovi API key (see Authentication below), pass it via env:
{
"mcpServers": {
"muovi": {
"command": "npx",
"args": ["-y", "@muovi/mcp-server"],
"env": {
"MUOVI_API_KEY": "your-key-here"
}
}
}
}Restart Claude Desktop after editing the config.
Cursor
Add to ~/.cursor/mcp.json (or your workspace's .cursor/mcp.json):
{
"mcpServers": {
"muovi": {
"command": "npx",
"args": ["-y", "@muovi/mcp-server"]
}
}
}Claude Code
Register the server with the Claude Code CLI:
claude mcp add muovi --command "npx" --args "-y" "@muovi/mcp-server"Or add it manually to your Claude Code settings:
{
"mcpServers": {
"muovi": {
"command": "npx",
"args": ["-y", "@muovi/mcp-server"]
}
}
}Manual / scripting
npx -y @muovi/mcp-serverThe process reads JSON-RPC on stdin and replies on stdout. All log output goes to stderr.
Authentication (optional)
All /v1 endpoints are public and unauthenticated by default. If your client has been issued a Muovi API key (higher rate-limit tier), set MUOVI_API_KEY in the server's environment and the package will forward it as the X-API-Key header on every request.
You can also override the API base URL for testing:
MUOVI_API_BASE_URL=https://staging.muovi.com.ar/api/v1 npx -y @muovi/mcp-serverExample agent workflow
A typical Claude conversation that uses these tools:
User asks for "an electrician in Palermo who's properly licensed".
Agent calls
muovi_list_servicesto map "electrician" →electricidad.Agent calls
muovi_list_citiesto confirmpalermois a valid neighborhood undercaba.Agent calls
muovi_search_professionalswith{ service: "electricidad", city: "caba", neighborhood: "palermo", has_matricula: true, min_rating: 4.5 }.Agent picks the top pro and calls
muovi_get_professionalfor the full bio + portfolio.Agent optionally calls
muovi_get_reviewsfor social proof.Agent calls
muovi_create_task_linkwith{ professional_slug, service_slug: "electricidad" }and surfaces the resulting URL.User follows the link, lands on Muovi, completes the on-platform task creation flow.
Step 8 — the on-platform flow — is Muovi's enforcement point for trust, payments, and disputes. MCP never bypasses it.
Local development
This package lives inside the Muovi web monorepo under packages/mcp-server/ but has its own package.json and node_modules (no npm workspaces — fully standalone for publishing).
cd packages/mcp-server
npm install
npm test # unit + integration + OpenAPI drift checks
npm run typecheck # strict TypeScript
npm run build # emits dist/The OpenAPI drift test parses public/openapi.yaml and asserts each tool's input schema matches the corresponding operation's parameters exactly — adding a query param to /v1 requires updating the corresponding tool (and vice versa).
Publishing
npm publish is intentionally not wired into CI. Releases are cut manually from a clean tag:
cd packages/mcp-server
npm version patch # or minor / major
npm publish --access public
git push --follow-tagsprepublishOnly runs clean + build + test before any publish.
MCP Registry (mcp-publisher)
Beyond npm, this server is listed in the Model Context Protocol registry via the committed server.json manifest. Publishing to the registry is a manual step — there is deliberately no CI auto-publish (the registry is a low-frequency, human-gated surface, and namespace auth is interactive).
Committed namespace: ar.com.muovi/mcp-server — the reverse-DNS form of muovi.com.ar. This value lives in both server.json (name) and package.json (mcpName) and the two must stay byte-identical (the server-json test enforces equality). It must also match the identity you authenticate as with mcp-publisher (see below).
One-time namespace ownership setup
Prove ownership of the ar.com.muovi namespace once, before the first publish:
DNS (preferred): add the TXT record that
mcp-publisher login dnsprints to themuovi.com.arzone, then authenticate against that domain. This ties the namespace to the domain we already control.GitHub OAuth (fallback):
mcp-publisher login github— authenticates via themuovi-arGitHub org. Only use this if DNS verification is unavailable; the authenticated identity still has to line up with the committedar.com.muovi/mcp-servernamespace.
If the committed namespace and the authenticated identity disagree, mcp-publisher publish will reject the manifest — fix the namespace (in both files) or the login, do not force it.
Publish steps
cd packages/mcp-server
mcp-publisher validate ./server.json # checks against the live registry schema
mcp-publisher publish # publishes server.json under the authenticated namespacevalidate is the step that confirms the manifest matches the current registry schema version — run it every time; the pinned $schema in server.json is a hint, not a guarantee the live schema hasn't moved.
Version-bump discipline
The server-json test asserts that four version fields agree. On every version bump, update all of them together, then re-publish to both npm and the registry:
package.json→versionsrc/server.ts→PACKAGE_VERSIONserver.json→versionserver.json→packages[0].version
Honest gating notes
The manifest advertises capabilities that are not yet fully live. Keep these caveats in mind (and do not overstate them to users):
Remote transport (
remotes[].url=https://mcp.muovi.com.ar/) is only truthful once that endpoint reliably answers JSON-RPCinitializeover streamable-HTTP. That hosted surface is tracked in MOB-207; until it lands, the stdio package (npx @muovi/mcp-server) is the only transport that actually works.muovi_get_professionalandmuovi_get_reviewsremain broken against production until MOB-263 deploys the backing/v1endpoints. The tools are registered and pass drift checks, but live calls will fail until then.
License
MIT.
Links
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/mmiani/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server