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.
curl -O https://raw.githubusercontent.com/berkayoztunc/orquestra/main/.claude/skills/orquestra-mcp-connect/SKILL.mdgit clone --depth 1 https://github.com/berkayoztunc/orquestraWrote 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.
[](https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-mcp-connect)<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.
<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>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.
| Model | Per session | Once 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 |
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 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
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.
- 12d ago First seen · 156 lines · 153 tokens per session scan B fa026263ecd7
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.
Other skills, from other repositories
voiden
Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.
agent-communication-protocol
Open protocol for AI agent interoperability enabling standardized communication between agents, applications, and humans across different frameworks.
ast-introspection
Use Go AST-aware analysis to enumerate symbols, extract signatures, and propose mechanically safe refactors (read-only by default).
ci-orchestrator
Run a CI-like pipeline locally (format, lint, vet, static-analysis, tests) and summarize per-step results with remediation guidance.
config-loader-helper
Diagnose configuration-related failures, enumerate required env vars, and guide safe local test setup (no secrets).
db-infra-mocks
Propose minimal seams and local substitutes so tests run without real RDBMS/Redis/Mongo infrastructure.