MCP server for the Delinea Secret Server and Platform APIs
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"delinea-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for the Delinea Secret Server and Platform APIs
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
mcpki-server is the backend infrastructure for https://www.mcpki.org, enabling secure public key management and autonomous certificate handling for large language models (LLMs).
MCP Security Weekly
Get CVE alerts and security updates for Delinea Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for the Delinea Secret Server and Platform APIs
search and fetch) for controlled AI interactions.[!NOTE]
This project uses
uv(https://github.com/astral-sh/uv), but if you prefer to run commands without this, you can dopipandvenvcommands as usual if desired.
uv pip sync requirements.txtuv run server.py --config config.jsonSecrets such as passwords continue to come from environment variables.
Provide DELINEA_PASSWORD in your shell environment.
Optional features rely on additional variables such as AZURE_OPENAI_KEY or PLATFORM_SERVICE_PASSWORD.
Non-secret parameters belong in config.json:
{
"delinea_username": "<username>",
"delinea_base_url": "https://your-secret-server/SecretServer",
"platform_hostname": "<tenant>.secureplatform.io",
"platform_service_account": "<service_account>",
"platform_tenant_id": "<tenant_id>",
"azure_openai_endpoint": "https://example.openai.azure.com/",
"azure_openai_deployment": "<deployment_name>",
"auth_mode": "none",
"transport_mode": "stdio",
"chatgpt_disable_scope_checks": false,
"port": 8000,
"debug": false,
"external_hostname": null,
"ssl_keyfile": null,
"ssl_certfile": null,
"registration_psk": null,
"jwt_key_path": ".cache/jwt.json",
"oauth_db_path": ".cache/oauth.db",
"enabled_tools": []
}
For Secret Server Cloud simply use the cloud URL without /SecretServer.
Specify ssl_keyfile and ssl_certfile to enable HTTPS.
For Let's Encrypt, use the privkey.pem and fullchain.pem files.
The configuration file supports the following keys:
none or oauth). OAuth obviously doesn't work with stdio transport.stdio for command line or sse for HTTP/SSE.sse mode.privkey.pem)fullchain.pem)