orquestra: Skill for Claude Code

.claude/skills/orquestra-mcp-connect/SKILL.md

orquestra-mcp-connect is a skill for Claude Code, Codex from berkayoztunc/orquestra. It costs 153 tokens per session (1,083 once invoked), scanned B, original, MIT.

Setup instructions for connecting the Orquestra MCP server to coding tools such as Claude Code, Claude Desktop, OpenAI Codex CLI, or Cursor. MCP is a standard way for an AI tool to access an external service.

In plain words
What is it for?
It helps install the Orquestra agents and add the Orquestra server to a selected coding tool. It includes command-line installation options and manual configuration examples.
Why use it?
It removes the need to work out the server address and configuration format for each supported client. It also covers first-time setup and connection troubleshooting.

Skill for Claude CodeCodex

Written for Claude Code and Codex: installed under .claude/, but also reads ~/.codex or $CODEX_HOME. Also seen: reads .claude/ paths; mentions Claude Code; mentions Codex.

This is berkayoztunc/orquestra's own configuration. It tells Claude Code and Codex how to work on orquestra itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything orquestra configures →

Reuse

Borrowing it

Nothing to install: this file belongs to berkayoztunc/orquestra. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/berkayoztunc/orquestra/main/.claude/skills/orquestra-mcp-connect/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/berkayoztunc/orquestra

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for orquestra-mcp-connect

README.md
[![agentmods](https://agentmods.dev/badge/skills/berkayoztunc/orquestra/orquestra-mcp-connect/github.svg)](https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-mcp-connect)
Your own site
<a href="https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-mcp-connect"><img src="https://agentmods.dev/badge/skills/berkayoztunc/orquestra/orquestra-mcp-connect/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for orquestra-mcp-connect

Your own site · 80×15
<a href="https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-mcp-connect"><img src="https://agentmods.dev/badge/skills/berkayoztunc/orquestra/orquestra-mcp-connect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 153 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,083 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00153 $0.01083
Opus 5 $0.00077 $0.00541
Sonnet 5 $0.00031 $0.00217
Haiku 4.5 $0.00015 $0.00108

Measured 12d ago against content hash fa026263ecd7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade B, and why

orquestra-mcp-connect scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

| `--codex` | Patch Codex CLI `~/.codex/config.toml` |

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

# curl
.claude/skills/orquestra-mcp-connect/SKILL.md · 156 lines

How it starts

The opening of the file, as written. The whole thing — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Orquestra MCP — Connection Setup

MCP endpoint: https://api.orquestra.dev/mcp (Streamable HTTP, stateless)


Quick Install (all clients)

# curl
bash <(curl -fsSL https://raw.githubusercontent.com/berkayoztunc/orquestra/main/install-skills.sh) --all

# wget
bash <(wget -qO- https://raw.githubusercontent.com/berkayoztunc/orquestra/main/install-skills.sh) --all

Installs agents + skills for Claude Code, then patches MCP config for Claude Code, Claude Desktop, and OpenAI Codex CLI.

Selective flags:

Flag Effect
(none) Agents + skills only (local .claude/)
--global Agents + skills to ~/.claude/
--claude-code Patch Claude Code settings.json
--claude-desktop Patch Claude Desktop config
--codex Patch Codex CLI ~/.codex/config.toml
--all Global install + all three MCP patches

Manual Config

Claude Code (CLI)

claude mcp add orquestra --transport http https://api.orquestra.dev/mcp

Or edit .claude/settings.json directly:

{
  "mcpServers": {
    "orquestra": {
      "type": "http",
      "url": "https://api.orquestra.dev/mcp"
    }
  }
}

Claude Desktop

File: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "orquestra": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/client-streamable-http",
        "https://api.orquestra.dev/mcp"
      ]
    }
  }
}

Restart Claude Desktop after saving.

OpenAI Codex CLI

File: ~/.codex/config.toml

[[mcp_servers]]
name = "orquestra"
url = "https://api.orquestra.dev/mcp"

Cursor

File: .cursor/mcp.json (project) or ~/.cursor/mcp.json (global)

{
  "mcpServers": {
    "orquestra": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/client-streamable-http",
        "https://api.orquestra.dev/mcp"
      ]
    }
  }
}

Verify Connection

Read the full file on GitHub · 156 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 156 lines · 153 tokens per session scan B fa026263ecd7

Subscribe to this mod's changes

orquestra-mcp-connect is a skill published in the GitHub repository berkayoztunc/orquestra (23 stars, last pushed 25d ago), licensed MIT. It adds 153 tokens to every session and 1,083 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.