npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jeretucu/mcp-server-siebel

v1.0.0

Published

MCP Server for Siebel CRM REST API integration

Readme

mcp-server-siebel

npm version License: MIT MCP Compatible

Servidor MCP (Model Context Protocol) para integración con Oracle Siebel CRM vía su API REST. Permite que Claude y otros modelos de IA interactúen directamente con Siebel.


Requisitos previos

  • Node.js >= 18
  • Acceso a una instancia de Siebel CRM con la API REST habilitada
  • Usuario y contraseña de Siebel

Instalación

npm install -g @jeretucu/mcp-server-siebel

O usar directamente con npx:

npx @jeretucu/mcp-server-siebel

Configuración de variables de entorno

Crea un archivo .env basado en .env.example:

SIEBEL_URL=https://tu-servidor-siebel:9001
SIEBEL_USERNAME=tu_usuario
SIEBEL_PASSWORD=tu_contrasena
SIEBEL_LANG=ENU

| Variable | Descripción | Requerida | |---|---|---| | SIEBEL_URL | URL base del servidor Siebel | Sí | | SIEBEL_USERNAME | Usuario de Siebel | Sí | | SIEBEL_PASSWORD | Contraseña de Siebel | Sí | | SIEBEL_LANG | Idioma (default: ENU) | No |


Conectar a Claude Desktop

Agrega esto a tu archivo claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "siebel": {
      "command": "npx",
      "args": ["-y", "@jeretucu/mcp-server-siebel"],
      "env": {
        "SIEBEL_URL": "https://tu-servidor-siebel:9001",
        "SIEBEL_USERNAME": "tu_usuario",
        "SIEBEL_PASSWORD": "tu_contrasena",
        "SIEBEL_LANG": "ENU"
      }
    }
  }
}

Conectar a Claude Code

claude mcp add siebel npx @jeretucu/mcp-server-siebel \
  -e SIEBEL_URL=https://tu-servidor:9001 \
  -e SIEBEL_USERNAME=usuario \
  -e SIEBEL_PASSWORD=contrasena

Tools disponibles

get_account

Obtiene una cuenta por ID.

Obtén la cuenta con ID 1-ABC123

search_accounts

Busca cuentas por nombre u otro criterio.

Busca cuentas con nombre que contenga "Transbank"

get_contact

Obtiene un contacto por ID.

Obtén el contacto 1-XYZ456

search_contacts

Busca contactos por nombre, apellido o email.

Busca contactos con apellido "González"

get_opportunity

Obtiene una oportunidad por ID o criterio de búsqueda.

Busca oportunidades con estado "Open"

create_activity

Crea una actividad o tarea en Siebel.

Crea una actividad de tipo "Call" para la cuenta 1-ABC123

update_record

Actualiza cualquier registro de Siebel.

Actualiza el campo Status a "Active" en la cuenta 1-ABC123

run_query

Ejecuta una query sobre cualquier Business Object.

Consulta el Business Object Quote con searchspec [Status]='Open'

Desarrollo local

git clone https://github.com/jeretucu/mcp-server-siebel
cd mcp-server-siebel
npm install
cp .env.example .env
# editar .env con tus credenciales
npm run dev

Contribución

  1. Fork del repositorio
  2. Crea una rama: git checkout -b feature/nueva-tool
  3. Commit: git commit -m "feat: agrega nueva tool"
  4. Push: git push origin feature/nueva-tool
  5. Abre un Pull Request

Licencia

MIT © jeretucu