Servicialo MCP Server

Open protocol for professional service delivery via AI agents

Local serverstdio

What is the Servicialo MCP server?

Open protocol for professional service delivery via AI agents. Exposed over MCP by the servicialo mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Un protocolo abierto para coordinación de agenda, identidad, verificación

Its toolset

Everything the assistant can do here goes through one of these:

  • Contribuir-para-acceder — nodos que no aportan telemetría ven datos con 90 días de delay; nodos activos contribuyentes ven en tiempo real. Sin tier de pago
  • Pull — GET /api/benchmarks y GET /api/benchmarks/segments, o las tools MCP market.get_benchmark / market.list_segments
  • Push — suscribirse al evento benchmark.weekly_snapshot vía Webhooks API. El registry dispara un snapshot cada lunes 00:00 UTC con
  • Primitiva — Qué resuelve
  • Origen — Pregunta clave
  • Reagendamiento — Agendado/Confirmado → Reagendando → Agendado
  • Vertical — Ejemplo
  • Salud — Plan de kinesiología
  • Proyectos — Auditoría previa en 3 fases
  • Evidencia — Descripción

Adding it to your client

@servicialo/mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration

You will need 3 environment variables: SERVICIALO_API_KEY, SERVICIALO_ORG_ID, SERVICIALO_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Servicialo's toolset — Contribuir-para-acceder, Pull, Push and 7 more — is a fair guide to whether it matches your workflow. It is maintained by danioni; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Servicialo.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the servicialo mcp server does with a few real requests.

Available tools

ToolWhat it does
Contribuir-para-accedernodos que no aportan telemetría ven datos con 90 días de delay; nodos activos contribuyentes ven en tiempo real. Sin tier de pago.
PullGET /api/benchmarks y GET /api/benchmarks/segments, o las tools MCP market.get_benchmark / market.list_segments.
Pushsuscribirse al evento benchmark.weekly_snapshot vía [Webhooks API](./WEBHOOKS.md). El registry dispara un snapshot cada lunes 00:00 UTC con HMAC-signed payload.
PrimitivaQué resuelve
OrigenPregunta clave
ReagendamientoAgendado/Confirmado → Reagendando → Agendado
VerticalEjemplo
SaludPlan de kinesiología
ProyectosAuditoría previa en 3 fases
EvidenciaDescripción

How to install the Servicialo MCP server

{
  "mcpServers": {
    "servicialo": {
      "command": "npx",
      "args": ["-y", "@servicialo/mcp-server"],
      "env": {
        "SERVICIALO_API_KEY": "your-value",
        "SERVICIALO_ORG_ID": "your-value",
        "SERVICIALO_BASE_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SERVICIALO_API_KEYCredential the server authenticates with.Yes
SERVICIALO_ORG_IDConfiguration value read at startup.Optional
SERVICIALO_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Servicialo to Contribuir-para-acceder.
  • Use Servicialo to Pull.
  • Use Servicialo to Push.

Frequently asked questions

It connects Servicialo to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (Contribuir-para-acceder, Pull, Push, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Servicialo directly.