mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-31 06:03:29 +08:00
Compare commits
1 Commits
fix/codex-
...
fix/mcp-js
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bcc88191d0 |
@@ -9,6 +9,7 @@
|
|||||||
"args": ["-y", "@upstash/context7-mcp@2.1.4"]
|
"args": ["-y", "@upstash/context7-mcp@2.1.4"]
|
||||||
},
|
},
|
||||||
"exa": {
|
"exa": {
|
||||||
|
"type": "http",
|
||||||
"url": "https://mcp.exa.ai/mcp"
|
"url": "https://mcp.exa.ai/mcp"
|
||||||
},
|
},
|
||||||
"memory": {
|
"memory": {
|
||||||
|
|||||||
@@ -216,6 +216,20 @@ test('.mcp.json includes at least github, context7, and exa servers', () => {
|
|||||||
assert.ok(servers.includes('exa'), 'Expected exa MCP server');
|
assert.ok(servers.includes('exa'), 'Expected exa MCP server');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('.mcp.json HTTP transport servers declare type=http when they use url', () => {
|
||||||
|
for (const [name, server] of Object.entries(mcpConfig.mcpServers)) {
|
||||||
|
if (!server || typeof server !== 'object' || !('url' in server)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.strictEqual(
|
||||||
|
server.type,
|
||||||
|
'http',
|
||||||
|
`Expected ${name} MCP server to declare type=http when using url transport`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// ── Codex marketplace file ────────────────────────────────────────────────────
|
// ── Codex marketplace file ────────────────────────────────────────────────────
|
||||||
// Per official docs: repo marketplace lives at $REPO_ROOT/.agents/plugins/marketplace.json
|
// Per official docs: repo marketplace lives at $REPO_ROOT/.agents/plugins/marketplace.json
|
||||||
console.log('\n=== .agents/plugins/marketplace.json ===\n');
|
console.log('\n=== .agents/plugins/marketplace.json ===\n');
|
||||||
|
|||||||
Reference in New Issue
Block a user