Skip to content

Commit da9910a

Browse files
committed
wip
1 parent 2d004cd commit da9910a

3 files changed

Lines changed: 17 additions & 129 deletions

File tree

.executor/executor.jsonc

Lines changed: 2 additions & 121 deletions
Original file line numberDiff line numberDiff line change
@@ -1,135 +1,16 @@
11
{
22
"sources": {
3-
"vercel-api": {
3+
"vercel": {
44
"name": "Vercel API",
55
"config": {
6-
"specUrl": "https://openapi.vercel.sh",
6+
"specUrl": "https://openapi.vercel.sh/",
77
"baseUrl": "https://api.vercel.com/",
8-
"auth": {
9-
"kind": "bearer",
10-
"tokenSecretRef": {
11-
"secretId": "sec_dcd33fd0-3206-4763-b9ab-cfb2a59e697d"
12-
},
13-
"headerName": "Authorization",
14-
"prefix": null
15-
},
16-
"defaultHeaders": null
17-
},
18-
"kind": "openapi"
19-
},
20-
"neon-api": {
21-
"name": "Neon API",
22-
"config": {
23-
"specUrl": "https://neon.com/api_spec/release/v2.json",
24-
"baseUrl": "https://console.neon.tech/api/v2",
258
"auth": {
269
"kind": "none"
2710
},
2811
"defaultHeaders": null
2912
},
3013
"kind": "openapi"
31-
},
32-
"github-graphql-2": {
33-
"name": "GitHub GraphQL",
34-
"namespace": "github.graphql",
35-
"config": {
36-
"endpoint": "https://api.github.com/graphql",
37-
"defaultHeaders": null,
38-
"auth": {
39-
"kind": "bearer",
40-
"tokenSecretRef": {
41-
"secretId": "sec_7c17f9cf-e4c3-4a7f-96a0-6df6e731d97b"
42-
},
43-
"headerName": "Authorization",
44-
"prefix": null
45-
}
46-
},
47-
"kind": "graphql"
48-
},
49-
"axiom-mcp": {
50-
"name": "Axiom MCP",
51-
"namespace": "axiom.mcp",
52-
"config": {
53-
"endpoint": "https://mcp.axiom.co/mcp",
54-
"transport": "auto",
55-
"queryParams": null,
56-
"headers": null,
57-
"command": null,
58-
"args": null,
59-
"env": null,
60-
"cwd": null,
61-
"auth": {
62-
"kind": "oauth2",
63-
"redirectUri": "http://localhost:8788/v1/plugins/mcp/oauth/callback",
64-
"accessTokenRef": {
65-
"secretId": "sec_cac4c6e6-13fa-4885-a9fb-2722eb490ab6"
66-
},
67-
"refreshTokenRef": {
68-
"secretId": "sec_f18c6d61-192f-48f9-ba4b-73cbd81c1171"
69-
},
70-
"tokenType": "bearer",
71-
"expiresAt": 1806365884081,
72-
"scope": "",
73-
"resourceMetadataUrl": null,
74-
"authorizationServerUrl": "https://mcp.axiom.co/",
75-
"resourceMetadata": null,
76-
"authorizationServerMetadata": {
77-
"issuer": "https://mcp.axiom.co",
78-
"authorization_endpoint": "https://mcp.axiom.co/authorize",
79-
"token_endpoint": "https://mcp.axiom.co/token",
80-
"registration_endpoint": "https://mcp.axiom.co/register",
81-
"response_types_supported": [
82-
"code"
83-
],
84-
"response_modes_supported": [
85-
"query"
86-
],
87-
"grant_types_supported": [
88-
"authorization_code",
89-
"refresh_token"
90-
],
91-
"token_endpoint_auth_methods_supported": [
92-
"client_secret_basic",
93-
"client_secret_post",
94-
"none"
95-
],
96-
"revocation_endpoint": "https://mcp.axiom.co/token",
97-
"code_challenge_methods_supported": [
98-
"plain",
99-
"S256"
100-
]
101-
},
102-
"clientInformation": {
103-
"redirect_uris": [
104-
"http://localhost:8788/v1/plugins/mcp/oauth/callback"
105-
],
106-
"token_endpoint_auth_method": "none",
107-
"grant_types": [
108-
"authorization_code",
109-
"refresh_token"
110-
],
111-
"response_types": [
112-
"code"
113-
],
114-
"client_name": "Executor Local",
115-
"client_id": "vz0ZIimTduA2ryXo",
116-
"client_id_issued_at": 1774829875
117-
}
118-
}
119-
},
120-
"kind": "mcp"
121-
},
122-
"linear-graphql": {
123-
"name": "Linear GraphQL",
124-
"namespace": "linear.graphql",
125-
"kind": "graphql",
126-
"config": {
127-
"endpoint": "https://api.linear.app/graphql",
128-
"defaultHeaders": null,
129-
"auth": {
130-
"kind": "none"
131-
}
132-
}
13314
}
13415
}
13516
}

.mcp.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
"mcp",
99
"--stdio"
1010
]
11+
},
12+
"executor-stdio-prod": {
13+
"command": "executor",
14+
"args": [
15+
"mcp",
16+
"--stdio"
17+
]
1118
}
1219
}
1320
}

opencode.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"mcp": {
44
"executor-stdio": {
55
"type": "local",
6-
"command": [
7-
"bun",
8-
"run",
9-
"executor",
10-
"mcp",
11-
"--stdio"
12-
],
6+
"command": ["bun", "run", "executor", "mcp", "--stdio"],
137
"enabled": true,
148
"environment": {}
9+
},
10+
"executor-stdio-prod": {
11+
"type": "local",
12+
"command": ["executor", "mcp", "--stdio"],
13+
"enabled": false,
14+
"environment": {}
1515
}
1616
}
17-
}
17+
}

0 commit comments

Comments
 (0)