Evaluar MCP Server
Enables authentication and management of eTalent processes within Evaluar platform, allowing users to search positions, create and launch processes directly from their IDE.
README
Evaluar MCP Server
Servidor MCP (Model Context Protocol) para autenticarse en Evaluar y lanzar procesos eTalent desde tu IDE.
Instalación
1. Clonar y compilar
git clone <repository-url>
cd evaluar-mcp
npm install
npm run build
2. Configurar en tu MCP Host
Obtén la ruta absoluta del proyecto:
# En Windows
cd
# Resultado ejemplo: C:\Users\tu-usuario\proyectos\evaluar-mcp
# En Mac/Linux
pwd
# Resultado ejemplo: /Users/tu-usuario/proyectos/evaluar-mcp
Claude Desktop
Edita ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"evaluar": {
"command": "node",
"args": ["C:\\Users\\tu-usuario\\proyectos\\evaluar-mcp\\dist\\index.js"],
"env": {
"EVALUAR_AUTH_URL": "https://auth.evaluar.com/auth/realms/evcore/protocol/openid-connect/token",
"EVALUAR_API_URL": "https://apis.evaluar.com",
"EVALUAR_GRAPHQL_URL": "https://apis.evaluar.com/v2/graphql",
"EVALUAR_CLIENT_ID": "evcap"
}
}
}
}
Cursor
Edita .cursor/mcp.json:
{
"mcpServers": {
"evaluar": {
"command": "node",
"args": ["C:\\Users\\tu-usuario\\proyectos\\evaluar-mcp\\dist\\index.js"],
"env": {
"EVALUAR_AUTH_URL": "https://auth.evaluar.com/auth/realms/evcore/protocol/openid-connect/token",
"EVALUAR_API_URL": "https://apis.evaluar.com",
"EVALUAR_GRAPHQL_URL": "https://apis.evaluar.com/v2/graphql",
"EVALUAR_CLIENT_ID": "evcap"
}
}
}
}
3. Reiniciar tu IDE
Reinicia Claude Desktop, Cursor o tu IDE preferido para que cargue el nuevo MCP server.
Herramientas Disponibles
Autenticación
auth_login: Iniciar sesión con usuario y contraseñaauth_refresh: Refrescar el token de autenticación
Gestión de Empresas
company_list: Listar empresas disponiblescompany_select: Seleccionar empresa activa
Búsqueda de Positions
position_search: Buscar positions por nombre (soporta wildcard)
Procesos eTalent
process_create: Crear proceso eTalent (estado DRAFT)process_assign_position: Asignar position a un procesoprocess_launch: Lanzar proceso (devuelve URL de summary)
Flujo de Uso Típico
-
Iniciar sesión:
Usa auth_login con tus credenciales de Evaluar -
Seleccionar empresa (si tienes más de una):
Usa company_list para ver opciones Usa company_select para elegir una -
Buscar position:
Usa position_search con el nombre del cargo -
Crear y lanzar proceso:
Usa process_create Usa process_assign_position Usa process_launch -
Acceder al proceso:
Copia la URL de summary devuelta por process_launch
Ejemplo de Uso
"Necesito lanzar un proceso eTalent para un asesor de ventas"
El MCP te guiará paso a paso:
- Pedirá tus credenciales
- Si tienes varias empresas, te mostrará opciones
- Buscará positions relacionadas con "asesor ventas"
- Creará el proceso y te dará la URL de summary
Variables de Entorno
EVALUAR_AUTH_URL: URL de autenticación KeycloakEVALUAR_API_URL: Base URL de APIs RESTEVALUAR_GRAPHQL_URL: URL de endpoint GraphQLEVALUAR_CLIENT_ID: Client ID OAuth (default: evcap)
Rate Limiting
El servidor implementa un límite de 1 solicitud por segundo para evitar sobrecargar las APIs de Evaluar.
Manejo de Errores
- 401: Requiere autenticación o refresh de token
- 403: Permisos insuficientes
- 5xx: Error del servidor Evaluar
- Rate limit: Espera requerida antes de siguiente solicitud
Soporte
Este MCP solo soporta procesos tipo etalent. Otros tipos como cap360 o trust están fuera del alcance actual.
Estructura del Proyecto
evaluar-mcp/
├── src/
│ ├── index.ts # Entry point MCP server
│ ├── tools/ # MCP tools implementations
│ ├── api/ # HTTP client
│ └── types.ts # TypeScript types
├── dist/ # Compiled output
├── package.json
└── tsconfig.json
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.