cognitive-modules-cli 1.1.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +58 -126
- package/dist/cli.js +35 -1
- package/dist/mcp/index.d.ts +4 -0
- package/dist/mcp/index.js +4 -0
- package/dist/mcp/server.d.ts +9 -0
- package/dist/mcp/server.js +344 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/index.js +1 -0
- package/dist/modules/loader.js +77 -1
- package/dist/modules/runner.d.ts +3 -1
- package/dist/modules/runner.js +188 -11
- package/dist/modules/subagent.d.ts +65 -0
- package/dist/modules/subagent.js +185 -0
- package/dist/server/http.d.ts +20 -0
- package/dist/server/http.js +243 -0
- package/dist/server/index.d.ts +5 -0
- package/dist/server/index.js +4 -0
- package/dist/types.d.ts +25 -5
- package/dist/types.js +34 -10
- package/package.json +4 -1
- package/src/cli.ts +36 -1
- package/src/mcp/index.ts +5 -0
- package/src/mcp/server.ts +403 -0
- package/src/modules/index.ts +1 -0
- package/src/modules/loader.ts +101 -2
- package/src/modules/runner.ts +230 -15
- package/src/modules/subagent.ts +275 -0
- package/src/server/http.ts +316 -0
- package/src/server/index.ts +6 -0
- package/src/types.ts +53 -10
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cognitive Modules HTTP API Server
|
|
3
|
+
*
|
|
4
|
+
* Provides RESTful API interface for workflow platform integration.
|
|
5
|
+
*
|
|
6
|
+
* Start with:
|
|
7
|
+
* cog serve --port 8000
|
|
8
|
+
*
|
|
9
|
+
* Environment variables:
|
|
10
|
+
* COGNITIVE_API_KEY - API Key authentication (optional)
|
|
11
|
+
* OPENAI_API_KEY, ANTHROPIC_API_KEY, etc. - LLM provider keys
|
|
12
|
+
*/
|
|
13
|
+
import http from 'node:http';
|
|
14
|
+
import { URL } from 'node:url';
|
|
15
|
+
import { findModule, listModules, getDefaultSearchPaths } from '../modules/loader.js';
|
|
16
|
+
import { runModule } from '../modules/runner.js';
|
|
17
|
+
import { getProvider } from '../providers/index.js';
|
|
18
|
+
// =============================================================================
|
|
19
|
+
// Helpers
|
|
20
|
+
// =============================================================================
|
|
21
|
+
function jsonResponse(res, status, data) {
|
|
22
|
+
res.writeHead(status, {
|
|
23
|
+
'Content-Type': 'application/json',
|
|
24
|
+
'Access-Control-Allow-Origin': '*',
|
|
25
|
+
'Access-Control-Allow-Methods': 'GET, POST, OPTIONS',
|
|
26
|
+
'Access-Control-Allow-Headers': 'Content-Type, Authorization',
|
|
27
|
+
});
|
|
28
|
+
res.end(JSON.stringify(data, null, 2));
|
|
29
|
+
}
|
|
30
|
+
function parseBody(req) {
|
|
31
|
+
return new Promise((resolve, reject) => {
|
|
32
|
+
let body = '';
|
|
33
|
+
req.on('data', (chunk) => (body += chunk));
|
|
34
|
+
req.on('end', () => resolve(body));
|
|
35
|
+
req.on('error', reject);
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
function verifyApiKey(req) {
|
|
39
|
+
const expectedKey = process.env.COGNITIVE_API_KEY;
|
|
40
|
+
if (!expectedKey)
|
|
41
|
+
return true; // No auth required
|
|
42
|
+
const authHeader = req.headers.authorization;
|
|
43
|
+
if (!authHeader)
|
|
44
|
+
return false;
|
|
45
|
+
const token = authHeader.startsWith('Bearer ') ? authHeader.slice(7) : authHeader;
|
|
46
|
+
return token === expectedKey;
|
|
47
|
+
}
|
|
48
|
+
// =============================================================================
|
|
49
|
+
// Request Handlers
|
|
50
|
+
// =============================================================================
|
|
51
|
+
async function handleRoot(res) {
|
|
52
|
+
jsonResponse(res, 200, {
|
|
53
|
+
name: 'Cognitive Modules API',
|
|
54
|
+
version: '1.2.0',
|
|
55
|
+
docs: '/docs',
|
|
56
|
+
endpoints: {
|
|
57
|
+
run: 'POST /run',
|
|
58
|
+
modules: 'GET /modules',
|
|
59
|
+
module_info: 'GET /modules/{name}',
|
|
60
|
+
health: 'GET /health',
|
|
61
|
+
},
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
async function handleHealth(res) {
|
|
65
|
+
const providers = {
|
|
66
|
+
openai: Boolean(process.env.OPENAI_API_KEY),
|
|
67
|
+
anthropic: Boolean(process.env.ANTHROPIC_API_KEY),
|
|
68
|
+
minimax: Boolean(process.env.MINIMAX_API_KEY),
|
|
69
|
+
deepseek: Boolean(process.env.DEEPSEEK_API_KEY),
|
|
70
|
+
gemini: Boolean(process.env.GEMINI_API_KEY || process.env.GOOGLE_API_KEY),
|
|
71
|
+
qwen: Boolean(process.env.QWEN_API_KEY || process.env.DASHSCOPE_API_KEY),
|
|
72
|
+
};
|
|
73
|
+
jsonResponse(res, 200, {
|
|
74
|
+
status: 'healthy',
|
|
75
|
+
version: '1.2.0',
|
|
76
|
+
providers,
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
async function handleModules(res, searchPaths) {
|
|
80
|
+
const modules = await listModules(searchPaths);
|
|
81
|
+
const moduleInfos = modules.map((m) => ({
|
|
82
|
+
name: m.name,
|
|
83
|
+
version: m.version,
|
|
84
|
+
description: m.responsibility,
|
|
85
|
+
format: m.format,
|
|
86
|
+
path: m.location,
|
|
87
|
+
responsibility: m.responsibility,
|
|
88
|
+
tier: m.tier,
|
|
89
|
+
}));
|
|
90
|
+
jsonResponse(res, 200, {
|
|
91
|
+
modules: moduleInfos,
|
|
92
|
+
count: moduleInfos.length,
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
async function handleModuleInfo(res, moduleName, searchPaths) {
|
|
96
|
+
const moduleData = await findModule(moduleName, searchPaths);
|
|
97
|
+
if (!moduleData) {
|
|
98
|
+
jsonResponse(res, 404, { error: `Module '${moduleName}' not found` });
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
jsonResponse(res, 200, {
|
|
102
|
+
name: moduleData.name,
|
|
103
|
+
version: moduleData.version,
|
|
104
|
+
description: moduleData.responsibility,
|
|
105
|
+
format: moduleData.format,
|
|
106
|
+
path: moduleData.location,
|
|
107
|
+
responsibility: moduleData.responsibility,
|
|
108
|
+
tier: moduleData.tier,
|
|
109
|
+
inputSchema: moduleData.inputSchema,
|
|
110
|
+
outputSchema: moduleData.outputSchema,
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
async function handleRun(req, res, searchPaths) {
|
|
114
|
+
// Verify API key
|
|
115
|
+
if (!verifyApiKey(req)) {
|
|
116
|
+
jsonResponse(res, 401, {
|
|
117
|
+
error: 'Missing or invalid API Key. Use header: Authorization: Bearer <your-api-key>',
|
|
118
|
+
});
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
// Parse request body
|
|
122
|
+
let request;
|
|
123
|
+
try {
|
|
124
|
+
const body = await parseBody(req);
|
|
125
|
+
request = JSON.parse(body);
|
|
126
|
+
}
|
|
127
|
+
catch {
|
|
128
|
+
jsonResponse(res, 400, { error: 'Invalid JSON body' });
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
// Validate request
|
|
132
|
+
if (!request.module || !request.args) {
|
|
133
|
+
jsonResponse(res, 400, { error: 'Missing required fields: module, args' });
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
// Find module
|
|
137
|
+
const moduleData = await findModule(request.module, searchPaths);
|
|
138
|
+
if (!moduleData) {
|
|
139
|
+
jsonResponse(res, 404, { error: `Module '${request.module}' not found` });
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
try {
|
|
143
|
+
// Create provider
|
|
144
|
+
const provider = getProvider(request.provider, request.model);
|
|
145
|
+
// Run module
|
|
146
|
+
const result = await runModule(moduleData, provider, {
|
|
147
|
+
input: { query: request.args, code: request.args },
|
|
148
|
+
useV22: true,
|
|
149
|
+
});
|
|
150
|
+
const response = {
|
|
151
|
+
ok: result.ok,
|
|
152
|
+
module: request.module,
|
|
153
|
+
provider: request.provider || process.env.LLM_PROVIDER || 'openai',
|
|
154
|
+
};
|
|
155
|
+
if (result.ok) {
|
|
156
|
+
if ('meta' in result)
|
|
157
|
+
response.meta = result.meta;
|
|
158
|
+
if ('data' in result)
|
|
159
|
+
response.data = result.data;
|
|
160
|
+
}
|
|
161
|
+
else {
|
|
162
|
+
if ('error' in result)
|
|
163
|
+
response.error = result.error?.message;
|
|
164
|
+
}
|
|
165
|
+
jsonResponse(res, 200, response);
|
|
166
|
+
}
|
|
167
|
+
catch (error) {
|
|
168
|
+
jsonResponse(res, 500, {
|
|
169
|
+
ok: false,
|
|
170
|
+
error: error instanceof Error ? error.message : String(error),
|
|
171
|
+
module: request.module,
|
|
172
|
+
});
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
export function createServer(options = {}) {
|
|
176
|
+
const { cwd = process.cwd() } = options;
|
|
177
|
+
const searchPaths = getDefaultSearchPaths(cwd);
|
|
178
|
+
const server = http.createServer(async (req, res) => {
|
|
179
|
+
const url = new URL(req.url || '/', `http://${req.headers.host}`);
|
|
180
|
+
const path = url.pathname;
|
|
181
|
+
const method = req.method?.toUpperCase();
|
|
182
|
+
// Handle CORS preflight
|
|
183
|
+
if (method === 'OPTIONS') {
|
|
184
|
+
res.writeHead(204, {
|
|
185
|
+
'Access-Control-Allow-Origin': '*',
|
|
186
|
+
'Access-Control-Allow-Methods': 'GET, POST, OPTIONS',
|
|
187
|
+
'Access-Control-Allow-Headers': 'Content-Type, Authorization',
|
|
188
|
+
});
|
|
189
|
+
res.end();
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
try {
|
|
193
|
+
// Route requests
|
|
194
|
+
if (path === '/' && method === 'GET') {
|
|
195
|
+
await handleRoot(res);
|
|
196
|
+
}
|
|
197
|
+
else if (path === '/health' && method === 'GET') {
|
|
198
|
+
await handleHealth(res);
|
|
199
|
+
}
|
|
200
|
+
else if (path === '/modules' && method === 'GET') {
|
|
201
|
+
await handleModules(res, searchPaths);
|
|
202
|
+
}
|
|
203
|
+
else if (path.startsWith('/modules/') && method === 'GET') {
|
|
204
|
+
const moduleName = path.slice('/modules/'.length);
|
|
205
|
+
await handleModuleInfo(res, moduleName, searchPaths);
|
|
206
|
+
}
|
|
207
|
+
else if (path === '/run' && method === 'POST') {
|
|
208
|
+
await handleRun(req, res, searchPaths);
|
|
209
|
+
}
|
|
210
|
+
else {
|
|
211
|
+
jsonResponse(res, 404, { error: 'Not found' });
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
catch (error) {
|
|
215
|
+
console.error('Server error:', error);
|
|
216
|
+
jsonResponse(res, 500, {
|
|
217
|
+
error: error instanceof Error ? error.message : 'Internal server error',
|
|
218
|
+
});
|
|
219
|
+
}
|
|
220
|
+
});
|
|
221
|
+
return server;
|
|
222
|
+
}
|
|
223
|
+
export async function serve(options = {}) {
|
|
224
|
+
const { host = '0.0.0.0', port = 8000 } = options;
|
|
225
|
+
const server = createServer(options);
|
|
226
|
+
return new Promise((resolve, reject) => {
|
|
227
|
+
server.on('error', reject);
|
|
228
|
+
server.listen(port, host, () => {
|
|
229
|
+
console.log(`Cognitive Modules HTTP Server running at http://${host}:${port}`);
|
|
230
|
+
console.log('Endpoints:');
|
|
231
|
+
console.log(' GET / - API info');
|
|
232
|
+
console.log(' GET /health - Health check');
|
|
233
|
+
console.log(' GET /modules - List modules');
|
|
234
|
+
console.log(' GET /modules/:name - Module info');
|
|
235
|
+
console.log(' POST /run - Run module');
|
|
236
|
+
resolve();
|
|
237
|
+
});
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
// Allow running directly
|
|
241
|
+
if (import.meta.url === `file://${process.argv[1]}`) {
|
|
242
|
+
serve().catch(console.error);
|
|
243
|
+
}
|
package/dist/types.d.ts
CHANGED
|
@@ -33,6 +33,8 @@ export type SchemaStrictness = 'high' | 'medium' | 'low';
|
|
|
33
33
|
export type RiskLevel = 'none' | 'low' | 'medium' | 'high';
|
|
34
34
|
/** Enum extension strategy */
|
|
35
35
|
export type EnumStrategy = 'strict' | 'extensible';
|
|
36
|
+
/** Risk aggregation rule */
|
|
37
|
+
export type RiskRule = 'max_changes_risk' | 'max_issues_risk' | 'explicit';
|
|
36
38
|
export interface CognitiveModule {
|
|
37
39
|
name: string;
|
|
38
40
|
version: string;
|
|
@@ -49,6 +51,7 @@ export interface CognitiveModule {
|
|
|
49
51
|
overflow?: OverflowConfig;
|
|
50
52
|
enums?: EnumConfig;
|
|
51
53
|
compat?: CompatConfig;
|
|
54
|
+
metaConfig?: MetaConfig;
|
|
52
55
|
context?: 'fork' | 'main';
|
|
53
56
|
prompt: string;
|
|
54
57
|
inputSchema?: object;
|
|
@@ -115,6 +118,18 @@ export interface CompatConfig {
|
|
|
115
118
|
runtime_auto_wrap?: boolean;
|
|
116
119
|
schema_output_alias?: 'data' | 'output';
|
|
117
120
|
}
|
|
121
|
+
/** Meta field configuration (v2.2) */
|
|
122
|
+
export interface MetaConfig {
|
|
123
|
+
required?: string[];
|
|
124
|
+
risk_rule?: RiskRule;
|
|
125
|
+
confidence?: {
|
|
126
|
+
min?: number;
|
|
127
|
+
max?: number;
|
|
128
|
+
};
|
|
129
|
+
explain?: {
|
|
130
|
+
max_chars?: number;
|
|
131
|
+
};
|
|
132
|
+
}
|
|
118
133
|
/**
|
|
119
134
|
* Control plane metadata - unified across all modules.
|
|
120
135
|
* Used for routing, logging, UI cards, and middleware decisions.
|
|
@@ -255,10 +270,15 @@ export declare function isV22Envelope<T>(response: EnvelopeResponse<T>): respons
|
|
|
255
270
|
/** Check if response is successful */
|
|
256
271
|
export declare function isEnvelopeSuccess<T>(response: EnvelopeResponse<T>): response is EnvelopeSuccessV22<T> | EnvelopeSuccessV21<T>;
|
|
257
272
|
/** Extract meta from any envelope response */
|
|
258
|
-
export declare function extractMeta<T>(response: EnvelopeResponse<T
|
|
259
|
-
/**
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
273
|
+
export declare function extractMeta<T>(response: EnvelopeResponse<T>, riskRule?: RiskRule): EnvelopeMeta;
|
|
274
|
+
/**
|
|
275
|
+
* Aggregate risk based on configured rule.
|
|
276
|
+
*
|
|
277
|
+
* Rules:
|
|
278
|
+
* - max_changes_risk: max(data.changes[*].risk) - default
|
|
279
|
+
* - max_issues_risk: max(data.issues[*].risk) - for review modules
|
|
280
|
+
* - explicit: return "medium", module should set risk explicitly
|
|
281
|
+
*/
|
|
282
|
+
export declare function aggregateRisk(data: Record<string, unknown>, riskRule?: RiskRule): RiskLevel;
|
|
263
283
|
/** Check if result should be escalated to human review */
|
|
264
284
|
export declare function shouldEscalate<T>(response: EnvelopeResponse<T>, confidenceThreshold?: number): boolean;
|
package/dist/types.js
CHANGED
|
@@ -14,17 +14,17 @@ export function isEnvelopeSuccess(response) {
|
|
|
14
14
|
return response.ok === true;
|
|
15
15
|
}
|
|
16
16
|
/** Extract meta from any envelope response */
|
|
17
|
-
export function extractMeta(response) {
|
|
17
|
+
export function extractMeta(response, riskRule = 'max_changes_risk') {
|
|
18
18
|
if (isV22Envelope(response)) {
|
|
19
19
|
return response.meta;
|
|
20
20
|
}
|
|
21
21
|
// Synthesize meta from v2.1 response
|
|
22
22
|
if (response.ok) {
|
|
23
|
-
const data = response.data;
|
|
23
|
+
const data = (response.data ?? {});
|
|
24
24
|
return {
|
|
25
|
-
confidence: data
|
|
26
|
-
risk:
|
|
27
|
-
explain: (data
|
|
25
|
+
confidence: data.confidence ?? 0.5,
|
|
26
|
+
risk: aggregateRisk(data, riskRule),
|
|
27
|
+
explain: (data.rationale ?? '').slice(0, 280) || 'No explanation',
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
else {
|
|
@@ -35,20 +35,44 @@ export function extractMeta(response) {
|
|
|
35
35
|
};
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
/** Aggregate risk from list of
|
|
39
|
-
|
|
38
|
+
/** Aggregate risk from list of items */
|
|
39
|
+
function aggregateRiskFromList(items) {
|
|
40
40
|
const riskLevels = { none: 0, low: 1, medium: 2, high: 3 };
|
|
41
41
|
const riskNames = ['none', 'low', 'medium', 'high'];
|
|
42
|
-
if (!
|
|
42
|
+
if (!items || items.length === 0) {
|
|
43
43
|
return 'medium';
|
|
44
44
|
}
|
|
45
45
|
let maxLevel = 0;
|
|
46
|
-
for (const
|
|
47
|
-
const level = riskLevels[
|
|
46
|
+
for (const item of items) {
|
|
47
|
+
const level = riskLevels[item.risk ?? 'medium'];
|
|
48
48
|
maxLevel = Math.max(maxLevel, level);
|
|
49
49
|
}
|
|
50
50
|
return riskNames[maxLevel];
|
|
51
51
|
}
|
|
52
|
+
/**
|
|
53
|
+
* Aggregate risk based on configured rule.
|
|
54
|
+
*
|
|
55
|
+
* Rules:
|
|
56
|
+
* - max_changes_risk: max(data.changes[*].risk) - default
|
|
57
|
+
* - max_issues_risk: max(data.issues[*].risk) - for review modules
|
|
58
|
+
* - explicit: return "medium", module should set risk explicitly
|
|
59
|
+
*/
|
|
60
|
+
export function aggregateRisk(data, riskRule = 'max_changes_risk') {
|
|
61
|
+
if (riskRule === 'max_changes_risk') {
|
|
62
|
+
const changes = data.changes ?? [];
|
|
63
|
+
return aggregateRiskFromList(changes);
|
|
64
|
+
}
|
|
65
|
+
else if (riskRule === 'max_issues_risk') {
|
|
66
|
+
const issues = data.issues ?? [];
|
|
67
|
+
return aggregateRiskFromList(issues);
|
|
68
|
+
}
|
|
69
|
+
else if (riskRule === 'explicit') {
|
|
70
|
+
return 'medium'; // Module should override
|
|
71
|
+
}
|
|
72
|
+
// Fallback to changes
|
|
73
|
+
const changes = data.changes ?? [];
|
|
74
|
+
return aggregateRiskFromList(changes);
|
|
75
|
+
}
|
|
52
76
|
/** Check if result should be escalated to human review */
|
|
53
77
|
export function shouldEscalate(response, confidenceThreshold = 0.7) {
|
|
54
78
|
const meta = extractMeta(response);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cognitive-modules-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Cognitive Modules - Structured AI Task Execution with version management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -39,6 +39,9 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"js-yaml": "^4.1.1"
|
|
41
41
|
},
|
|
42
|
+
"optionalDependencies": {
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
44
|
+
},
|
|
42
45
|
"devDependencies": {
|
|
43
46
|
"@types/js-yaml": "^4.0.9",
|
|
44
47
|
"@types/node": "^22.0.0",
|
package/src/cli.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { getProvider, listProviders } from './providers/index.js';
|
|
|
19
19
|
import { run, list, pipe, init, add, update, remove, versions } from './commands/index.js';
|
|
20
20
|
import type { CommandContext } from './types.js';
|
|
21
21
|
|
|
22
|
-
const VERSION = '1.0
|
|
22
|
+
const VERSION = '1.3.0';
|
|
23
23
|
|
|
24
24
|
async function main() {
|
|
25
25
|
const args = process.argv.slice(2);
|
|
@@ -52,6 +52,9 @@ async function main() {
|
|
|
52
52
|
tag: { type: 'string', short: 't' },
|
|
53
53
|
branch: { type: 'string', short: 'b' },
|
|
54
54
|
limit: { type: 'string', short: 'l' },
|
|
55
|
+
// Server options
|
|
56
|
+
host: { type: 'string', short: 'H' },
|
|
57
|
+
port: { type: 'string', short: 'P' },
|
|
55
58
|
},
|
|
56
59
|
allowPositionals: true,
|
|
57
60
|
});
|
|
@@ -288,6 +291,30 @@ async function main() {
|
|
|
288
291
|
break;
|
|
289
292
|
}
|
|
290
293
|
|
|
294
|
+
case 'serve': {
|
|
295
|
+
const { serve } = await import('./server/http.js');
|
|
296
|
+
const port = values.port ? parseInt(values.port as string, 10) : 8000;
|
|
297
|
+
const host = (values.host as string) || '0.0.0.0';
|
|
298
|
+
console.log('Starting Cognitive Modules HTTP Server...');
|
|
299
|
+
await serve({ host, port, cwd: ctx.cwd });
|
|
300
|
+
break;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
case 'mcp': {
|
|
304
|
+
try {
|
|
305
|
+
const { serve: serveMcp } = await import('./mcp/server.js');
|
|
306
|
+
await serveMcp();
|
|
307
|
+
} catch (e) {
|
|
308
|
+
if (e instanceof Error && e.message.includes('Cannot find module')) {
|
|
309
|
+
console.error('MCP dependencies not installed.');
|
|
310
|
+
console.error('Install with: npm install @modelcontextprotocol/sdk');
|
|
311
|
+
process.exit(1);
|
|
312
|
+
}
|
|
313
|
+
throw e;
|
|
314
|
+
}
|
|
315
|
+
break;
|
|
316
|
+
}
|
|
317
|
+
|
|
291
318
|
default:
|
|
292
319
|
console.error(`Unknown command: ${command}`);
|
|
293
320
|
console.error('Run "cog --help" for usage.');
|
|
@@ -319,6 +346,8 @@ COMMANDS:
|
|
|
319
346
|
versions <url> List available versions
|
|
320
347
|
pipe Pipe mode (stdin/stdout)
|
|
321
348
|
init [name] Initialize project or create module
|
|
349
|
+
serve Start HTTP API server
|
|
350
|
+
mcp Start MCP server (for Claude Code, Cursor)
|
|
322
351
|
doctor Check configuration
|
|
323
352
|
|
|
324
353
|
OPTIONS:
|
|
@@ -333,6 +362,8 @@ OPTIONS:
|
|
|
333
362
|
--pretty Pretty-print JSON output
|
|
334
363
|
-V, --verbose Verbose output
|
|
335
364
|
--no-validate Skip schema validation
|
|
365
|
+
-H, --host <host> Server host (default: 0.0.0.0)
|
|
366
|
+
-P, --port <port> Server port (default: 8000)
|
|
336
367
|
-v, --version Show version
|
|
337
368
|
-h, --help Show this help
|
|
338
369
|
|
|
@@ -351,6 +382,10 @@ EXAMPLES:
|
|
|
351
382
|
cog run code-reviewer --provider openai --model gpt-4o --args "..."
|
|
352
383
|
cog list
|
|
353
384
|
|
|
385
|
+
# Servers
|
|
386
|
+
cog serve --port 8080
|
|
387
|
+
cog mcp
|
|
388
|
+
|
|
354
389
|
# Other
|
|
355
390
|
echo "review this code" | cog pipe --module code-reviewer
|
|
356
391
|
cog init my-module
|