Developer Tools
orkestr.eu
This server manages projects and provides browser-based UI previews for developers.
ENDPOINT 1
https://orkestr.eu/api/mcp
MCP server metadata
- Name
- orkestr
- Version
- 1.12.4
You are connected to the orkestr deployment platform. Use these tools to manage projects, environments, deployments, monitoring, and add-ons on behalf of the authenticated user.
Known tools 76
list_projectsList all projects owned by the current user (plus projects in teams you belong to).
Inferred read-onlyreproduce_in_browserShow / preview / screenshot what a page or UI actually LOOKS LIKE in a real browser (shareable video + screenshots).
Inferred read-onlycreate_projectCreate a new project and auto-create its production environment.
Potential side effectslist_repo_treeList the source file paths of a project's connected repo (read-only).
Inferred read-onlylist_pull_requestsList pull requests on a project's connected GitHub repo (read-only).
Inferred read-onlyget_pull_requestRead one pull request on a project's connected GitHub repo, with its changed files and per-file diffs (read-only).
Inferred read-onlyopen_pull_requestOpen a pull request on a project's GitHub repo with file changes (GitHub repos only).
Inferred read-onlyanalyze_projectAnalyze a project's repository to detect framework/runtime and generate a Dockerfile.
Inferred read-onlyupdate_environmentUpdate an environment's branch, env_vars, auto_deploy, and/or access_policy.
Potential side effectsdelete_environmentDelete a non-production environment and destroy its container.
Potential side effectsget_deployment_logsGet a deployment's pipeline (build/deploy) logs, ordered by pipeline step.
Inferred read-onlyrollback_deploymentRoll back to a previous deployment by reusing its Docker image.
Inferred read-onlylist_addonsList add-ons (Postgres/Redis databases and caches) attached to a project.
Inferred read-onlydeploy_functionBuild and deploy a function from its current handler_code/dependencies.
Inferred read-onlyget_deployment_statsGet aggregate deployment statistics for a whole project (not one deployment).
Inferred read-onlysleep_containerManually put a deployed app's container to sleep (it auto-wakes on the next inbound request).
Inferred read-onlyget_environment_env_varsReturn the decrypted environment variables for one environment.
Inferred read-onlyget_deployment_build_logGet the full raw builder output (Kaniko stderr) for a deployment.
Inferred read-onlytoggle_addon_auto_backupFlip daily auto-backup on or off for an add-on (Pro/Team only; Free returns 403).
Inferred read-onlylist_activityRecent audit-trail activity for the current user (and shared team actions).
Inferred read-onlyscan_registry_imageRun a vulnerability scan on one image tag and return the result synchronously (no polling).
Inferred read-onlymark_notifications_readMark all of the current user's notifications as read (cannot target individual ones).
Inferred read-onlyget_pending_actionCheck the status of a gated action you queued for human approval.
Inferred read-onlydelegateDelegate a focused sub-task to a subagent that runs in parallel with your other subagents.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.orkestr]
url = "https://orkestr.eu/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"orkestr": {
"type": "http",
"url": "https://orkestr.eu/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: orkestr
Remote MCP URL: https://orkestr.eu/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"orkestr": {
"url": "https://orkestr.eu/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"orkestr": {
"type": "http",
"url": "https://orkestr.eu/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "orkestr",
"transport": "streamable-http",
"url": "https://orkestr.eu/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://orkestr.eu/api/sandboxes/mcp
MCP server metadata
- Name
- orkestr-sandboxes
- Version
- 1.12.4
Tools for orkestr sandboxes - isolated, ephemeral Linux environments for running untrusted or agent-generated code. Create a sandbox, run code or shell commands in it, read and write files, pause and resume it to park it between turns, and terminate it when done.
Known tools 29
assign_template_tagAssign a tag to a template build - promotion without a rebuild.
Inferred read-onlycreate_volumeCreate a persistent volume - storage that survives across sandboxes.
Potential side effectsstart_background_commandStart a long-running shell command in the background and return a handle immediately - use this instead of run_shell for anything that may run long (builds, dependency installs, test suites, dev servers).
Potential side effectslist_background_commandsList every background command in a sandbox with live status.
Potential side effectskill_background_commandKill a background command: SIGTERM to its process group, ~5s grace, then SIGKILL.
Potential side effectsget_command_logsRead a background command's combined stdout+stderr from a byte offset.
Potential side effectsrun_codeRun a snippet of code in a sandbox; python code runs in a PERSISTENT kernel on code-interpreter sandboxes (variables survive across calls) and falls back to a one-shot process elsewhere.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.orkestr-sandboxes]
url = "https://orkestr.eu/api/sandboxes/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"orkestr-sandboxes": {
"type": "http",
"url": "https://orkestr.eu/api/sandboxes/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: orkestr-sandboxes
Remote MCP URL: https://orkestr.eu/api/sandboxes/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"orkestr-sandboxes": {
"url": "https://orkestr.eu/api/sandboxes/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"orkestr-sandboxes": {
"type": "http",
"url": "https://orkestr.eu/api/sandboxes/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "orkestr-sandboxes",
"transport": "streamable-http",
"url": "https://orkestr.eu/api/sandboxes/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for orkestr.eu was fetched 2026-08-24T05:52:43.394Z.
orkestr.eu is assessed as Trusted: Domain runs a meaningful technology spend, consistent with a real business.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.