eas.database-manager
by: EAS Engineering Automation Systems GmbH
- 60 total downloads
- Latest version: 10.26.601.1
EAS Database Manager is a Windows WPF application for managing SQL Server instances. It provides automated task queuing for backups, restores and migrations, detailed logging and auditing, plugin extensibility, and both email and toast notifications. Optimized for enterprise environments with secure credential handling.
eas.debug-launcher
by: EAS Engineering Automation Systems GmbH
- 150 total downloads
- Latest version: 1026.518.1350
Internal tool for handling debug versions - New EAS.DebugLauncher implementation
ESP-McpServer
by: EAS Engineering Automation Systems GmbH
- 10 total downloads
- Latest version: 26.6.11.707
ESP MCP Server exposes ESP task data to MCP-compatible clients such as VS Code, Cursor, and GitHub Copilot Chat.
## Installation
This package installs to `C:\Program Files\ESP\McpServer` and adds that folder to the machine PATH.
```
choco install ESP-McpServer -s https://choco.eas-cpq.de/v3/index.json
```
Requires .NET 10 runtime on the machine.
## MCP client configuration
Add a server entry to your MCP client configuration (for example `.vscode/mcp.json` in VS Code or Cursor):
```json
{
"inputs": [
{
"id": "esp_username",
"type": "promptString",
"description": "ESP API username"
},
{
"id": "esp_password",
"type": "promptString",
"description": "ESP API password",
"password": true
}
],
"servers": {
"ESP.McpServer": {
"type": "stdio",
"command": "ESP.McpServer",
"env": {
"ESP_API_BASE_URL": "https://esp-api.eas-cpq.de/",
"ESP_API_USERNAME": "${input:esp_username}",
"ESP_API_PASSWORD": "${input:esp_password}",
"ESP_API_TIMEOUT_SECONDS": "30"
}
}
}
}
```
`ESP.McpServer` resolves via PATH after installation. Alternatively use the full path:
`C:\Program Files\ESP\McpServer\ESP.McpServer.exe`
## Environment variables
| Variable | Description |
| --- | --- |
| `ESP_API_BASE_URL` | Base URL of the ESP API (required) |
| `ESP_API_USERNAME` | ESP API username (required) |
| `ESP_API_PASSWORD` | ESP API password (required) |
| `ESP_API_TIMEOUT_SECONDS` | HTTP timeout in seconds (optional, default 30) |
## Tools
- `search_tasks` — search tasks by title or description
- `get_task_by_id` — return full task details by identifier
## More information
Repository: https://github.com/eas-solutions/esp-mcp-server
Example config: https://github.com/eas-solutions/esp-mcp-server/blob/main/docs/mcp-client.example.json