Beebole MCP

Beebole MCP

MCP server to connect Claude with Beebole for time tracking, enabling project and task listing, time entry retrieval, and time logging.

Category
Visit Server

README

@neonexai/beebole-mcp

MCP server para conectar Claude con Beebole (control de horas). Dos modos:

  • Local (stdio)recomendado para clientes (GDPR): corre en el PC del cliente; su API key vive solo en su máquina; los datos no pasan por nuestro servidor.
  • Remoto (HTTP, VPS) — centralizado; el token del cliente viaja por cabecera X-Beebole-Key en cada petición y no se almacena (stateless multi-tenant).

Tools: beebole_list_projects, beebole_list_tasks, beebole_get_time_entries (rango de fechas), beebole_log_time (escritura, pide confirmación).

Construido sobre la API legacy JSON-RPC de Beebole (beebole-apps.com/api/v2, auth Basic token:x), que está verificada. La API GraphQL moderna se evaluará en el spike.


⚠️ Antes de darlo por operativo: SPIKE de verificación (1 vez)

La forma exacta de algunas respuestas/parámetros de la API legacy está marcada // [spike] en src/beebole.ts. Con una API key real:

npm install
npm run build
BEEBOLE_API_KEY="LA_KEY" SMOKE_FROM=2026-05-01 SMOKE_TO=2026-05-31 npm run smoke

Si los 3 servicios devuelven datos → verificado. Si alguno falla, ajustar los puntos // [spike] (nombres de filtro/jobId/shape) y repetir. Obtener la key: en Beebole → Settings → API → copiar (usar un usuario con permisos mínimos, no admin global).


Modo LOCAL (stdio) — recomendado para Cota Zero

  1. Sacar la API key en Beebole (Settings → API).
  2. En el PC del cliente, añadir el MCP a Claude:
    • Claude Code:
      claude mcp add beebole --env BEEBOLE_API_KEY=LA_KEY -- npx -y github:NeoNexAI/beebole-mcp
      
    • Claude Desktop (claude_desktop_config.json):
      {
        "mcpServers": {
          "beebole": {
            "command": "npx",
            "args": ["-y", "github:NeoNexAI/beebole-mcp"],
            "env": { "BEEBOLE_API_KEY": "LA_KEY" }
          }
        }
      }
      
  3. Reiniciar Claude. La key + los datos nunca salen del PC del cliente (solo hablan con Beebole).

Publicado vía GitHub: npx -y github:NeoNexAI/beebole-mcp clona el repo, instala, compila (prepare) y arranca. Requiere Node ≥18 en el PC. La primera ejecución tarda ~1 min (build); las siguientes usan caché de npx.


Modo REMOTO (HTTP, VPS)

  1. Build + deploy en Coolify (Build Pack = Dockerfile), puerto host 8087, vhost nginx beebole-mcp.neonexai.com + certbot (mismo patrón que el resto de apps).
  2. El cliente conecta con SU key en la cabecera:
    • Claude Code:
      claude mcp add --transport http beebole \
        https://beebole-mcp.neonexai.com/mcp \
        --header "X-Beebole-Key: LA_KEY"
      
    • Claude Desktop (vía puente mcp-remote):
      {
        "mcpServers": {
          "beebole": {
            "command": "npx",
            "args": ["-y", "mcp-remote", "https://beebole-mcp.neonexai.com/mcp",
                     "--header", "X-Beebole-Key:LA_KEY"]
          }
        }
      }
      
  3. Health check: GET https://beebole-mcp.neonexai.com/health{"ok":true}.

Seguridad: stateless (server efímero por petición), el token no se persiste ni se loggea. TLS obligatorio. La key hereda los permisos de su usuario en Beebole → usar permisos mínimos.


Estado

  • [x] Código (cliente + 4 tools + doble transporte + Docker)
  • [ ] Spike de verificación con key real (bloqueante para "operativo")
  • [ ] skill-vetter SAFE (código propio)
  • [ ] Conexión en el PG de Cota Zero (modo local) o deploy VPS

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured