-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
43 lines (43 loc) · 1.46 KB
/
Copy pathserver.json
File metadata and controls
43 lines (43 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.jascal/orca-mcp-server",
"title": "Orca MCP Server",
"description": "Go from natural language to verified finite state machines — topology bugs caught before code runs.",
"version": "0.1.30",
"repository": {
"url": "https://github.com/jascal/orca-lang",
"source": "github",
"id": "1189955224",
"subfolder": "packages/mcp-server"
},
"packages": [
{
"registryType": "npm",
"identifier": "@orcalang/orca-mcp-server",
"version": "0.1.30",
"transport": {
"type": "stdio"
},
"runtimeHint": "npx",
"environmentVariables": [
{
"name": "ANTHROPIC_API_KEY",
"description": "Anthropic API key for LLM-powered tools (generate_machine, generate_multi_machine, refine_machine, generate_actions with use_llm). Not required for parse_machine, verify_machine, compile_machine, or server_status.",
"isRequired": false,
"isSecret": true
},
{
"name": "ORCA_PROVIDER",
"description": "LLM provider to use: anthropic (default), openai, grok, or ollama.",
"isRequired": false,
"default": "anthropic"
},
{
"name": "ORCA_MODEL",
"description": "Model name to use for LLM tools. Defaults to claude-sonnet-4-6 for Anthropic.",
"isRequired": false
}
]
}
]
}