MCP 助手
- 作者仓库星标 0
- 作者仓库 skills-registry
Orquestra MCP — Connection Setup
MCP endpoint: https://api.orquestra.dev/mcp (Streamable HTTP, stateless)
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.
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"
]
}
}
}
Claude Code (CLI)
claude mcp add orquestra --transport http https://api.orquestra.dev/mcp
Or in .claude/settings.json:
{
"mcpServers": {
"orquestra": {
"type": "http",
"url": "https://api.orquestra.dev/mcp"
}
}
}
Verify Connection
After connecting, ask Claude:
"List the tools available in the orquestra MCP server"
You should see 8 tools: search_programs, list_instructions, build_instruction,
list_pda_accounts, derive_pda, read_llms_txt, get_ai_analysis, simulate_instruction.
Troubleshooting
| Symptom | Fix |
|---|---|
| Tools not appearing | Restart the client after config change |
npx not found |
Install Node.js ≥ 18 |
| Connection refused | Check internet access to api.orquestra.dev |
search_programs returns empty |
The program may not be indexed — upload IDL at orquestra.dev |
| Wrong tool name format | Tool names use underscores: search_programs, NOT searchPrograms |
Agent Pipeline (optional)
To install the full Orquestra agent pipeline (researcher → builder → signer):
bash <(curl -fsSL https://raw.githubusercontent.com/berkayoztunc/orquestra/main/install-skills.sh)
Agents installed: orquestra, orquestra-researcher, orquestra-pda-explorer,
orquestra-tx-builder, orquestra-simulator, orquestra-signer
<!-- tomevault:4.0:skill_md:2026-05-23 -->Source: berkayoztunc/orquestra — distributed by TomeVault.
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @tomevault-io · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- Node.js >=18
- 检测到的文件与系统行为
-
- 只读
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 File: ~/Library/Application Support/Claude/claudedesktopconfig.json Restart Claude Desktop after saving.
File: .cursor/mcp.json (project) or ~/.cursor/mcp.json (global)
Or in .claude/settings.json:
After connecting, ask Claude: "List the tools available in the orquestra MCP server" You should see 8 tools: searchprograms, listinstructions, buildinstruction,
Symptom · Fix Tools not appearing · Restart the client after config change npx not found · Install Node.js ≥ 18
To install the full Orquestra agent pipeline (researcher → builder → signer): Agents installed: orquestra, orquestra-researcher, orquestra-pda-explorer, orquestra-tx-builder, orquestra-simulator, orquestra-signer
# Orquestra MCP — Connection Setup
MCP endpoint: `https://api.orquestra.dev/mcp` (Streamable HTTP, stateless)
## Claude Desktop
File: `~/Library/Application Support/Claude/claude_desktop_config.json`
```json
{
"mcpServers": {
"orquestra": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/client-streamable-http",
"https://api.orquestra.dev/mcp"
]
}
}
}
```
Restart Claude Desktop after saving.
## Cursor
File: `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global)
```json
{
"mcpServers": {
"orquestra": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/client-streamable-http",
"https://api.orquestra.dev/mcp"
]
}
}
}
```
## Claude Code (CLI)
```bash
claude mcp add orquestra --transport http https://api.orquestra.dev/mcp
```
Or in `.claude/settings.json`:
```json
{
"mcpServers": {
"orquestra": {
"type": "http",
"url": "https://api.orquestra.dev/mcp"
}
}
}
```
## Verify Connection
After connecting, ask Claude:
> "List the tools available in the orquestra MCP server"
You should see 8 tools: `search_programs`, `list_instructions`, `build_instruction`,
`list_pda_accounts`, `derive_pda`, `read_llms_txt`, `get_ai_analysis`, `simulate_instruction`.
## Troubleshooting
| Symptom | Fix |
|---------|-----|
| Tools not appearing | Restart the client after config change |
| `npx` not found | Install Node.js ≥ 18 |
| Connection refused | Check internet access to `api.orquestra.dev` |
| `search_programs` returns empty | The program may not be indexed — upload IDL at orquestra.dev |
| Wrong tool name format | Tool names use underscores: `search_programs`, NOT `searchPrograms` |
## Agent Pipeline (optional)
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Claude Desktop → Cursor → Claude Code (CLI) → Verify Connection → Troubleshooting → Agent Pipeline (optional)
要点 -> Restart Claude Desktop after saving. · --- > Source: [berkayoztunc/orquestra](https://github.com/berkayoztunc/orquestra) — distributed by [TomeVault](https://tomevault.io).
文件/命令 -> https://api.orquestra.dev/mcp · ~/Library/Application Support/Claude/claudedesktopconfig.json · .cursor/mcp.json · ~/.cursor/mcp.json · .claude/settings.json · searchprograms · listinstructions · buildinstruction
内容 SHA-256 -> 0928b5e80fde
原文结构
适用与边界
原文中的明确线索
https://api.orquestra.dev/mcp、~/Library/Application Support/Claude/claudedesktopconfig.json、.cursor/mcp.json、~/.cursor/mcp.json、.claude/settings.json、searchprograms、listinstructions、buildinstruction