@artyfacts/mcp-server 1.0.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.
@@ -0,0 +1,558 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/server.ts
21
+ var server_exports = {};
22
+ __export(server_exports, {
23
+ ArtyfactsMcpServer: () => ArtyfactsMcpServer,
24
+ createMcpServer: () => createMcpServer,
25
+ startServer: () => startServer
26
+ });
27
+ module.exports = __toCommonJS(server_exports);
28
+ var import_server = require("@modelcontextprotocol/sdk/server/index.js");
29
+ var import_stdio = require("@modelcontextprotocol/sdk/server/stdio.js");
30
+ var import_types = require("@modelcontextprotocol/sdk/types.js");
31
+ var ARTYFACTS_TOOLS = [
32
+ // Organization tools
33
+ {
34
+ name: "get_organization",
35
+ description: "Get details about the current organization",
36
+ inputSchema: {
37
+ type: "object",
38
+ properties: {},
39
+ required: []
40
+ }
41
+ },
42
+ // Project tools
43
+ {
44
+ name: "list_projects",
45
+ description: "List all projects in the organization",
46
+ inputSchema: {
47
+ type: "object",
48
+ properties: {
49
+ limit: { type: "number", description: "Max results (default 50)" },
50
+ offset: { type: "number", description: "Pagination offset" }
51
+ },
52
+ required: []
53
+ }
54
+ },
55
+ {
56
+ name: "get_project",
57
+ description: "Get details about a specific project",
58
+ inputSchema: {
59
+ type: "object",
60
+ properties: {
61
+ project_id: { type: "string", description: "Project ID" }
62
+ },
63
+ required: ["project_id"]
64
+ }
65
+ },
66
+ // Artifact tools
67
+ {
68
+ name: "list_artifacts",
69
+ description: "List artifacts, optionally filtered by project",
70
+ inputSchema: {
71
+ type: "object",
72
+ properties: {
73
+ project_id: { type: "string", description: "Filter by project" },
74
+ type: { type: "string", description: "Filter by type (goal, spec, research, etc.)" },
75
+ status: { type: "string", description: "Filter by status" },
76
+ limit: { type: "number", description: "Max results" }
77
+ },
78
+ required: []
79
+ }
80
+ },
81
+ {
82
+ name: "get_artifact",
83
+ description: "Get a specific artifact by ID",
84
+ inputSchema: {
85
+ type: "object",
86
+ properties: {
87
+ artifact_id: { type: "string", description: "Artifact ID" }
88
+ },
89
+ required: ["artifact_id"]
90
+ }
91
+ },
92
+ {
93
+ name: "create_artifact",
94
+ description: "Create a new artifact",
95
+ inputSchema: {
96
+ type: "object",
97
+ properties: {
98
+ title: { type: "string", description: "Artifact title" },
99
+ type: { type: "string", description: "Type: goal, spec, research, report, experiment, decision" },
100
+ content: { type: "string", description: "Markdown content" },
101
+ project_id: { type: "string", description: "Project ID" },
102
+ parent_id: { type: "string", description: "Parent artifact ID" },
103
+ tags: { type: "array", items: { type: "string" }, description: "Tags" }
104
+ },
105
+ required: ["title"]
106
+ }
107
+ },
108
+ {
109
+ name: "update_artifact",
110
+ description: "Update an existing artifact",
111
+ inputSchema: {
112
+ type: "object",
113
+ properties: {
114
+ artifact_id: { type: "string", description: "Artifact ID" },
115
+ title: { type: "string", description: "New title" },
116
+ content: { type: "string", description: "New content" },
117
+ status: { type: "string", description: "New status" }
118
+ },
119
+ required: ["artifact_id"]
120
+ }
121
+ },
122
+ // Section tools
123
+ {
124
+ name: "list_sections",
125
+ description: "List sections of an artifact",
126
+ inputSchema: {
127
+ type: "object",
128
+ properties: {
129
+ artifact_id: { type: "string", description: "Artifact ID" }
130
+ },
131
+ required: ["artifact_id"]
132
+ }
133
+ },
134
+ {
135
+ name: "get_section",
136
+ description: "Get a specific section",
137
+ inputSchema: {
138
+ type: "object",
139
+ properties: {
140
+ artifact_id: { type: "string", description: "Artifact ID" },
141
+ section_id: { type: "string", description: "Section ID" }
142
+ },
143
+ required: ["artifact_id", "section_id"]
144
+ }
145
+ },
146
+ {
147
+ name: "create_section",
148
+ description: "Create a new section on an artifact",
149
+ inputSchema: {
150
+ type: "object",
151
+ properties: {
152
+ artifact_id: { type: "string", description: "Artifact ID" },
153
+ section_id: { type: "string", description: "Section identifier (slug)" },
154
+ heading: { type: "string", description: "Section heading" },
155
+ content: { type: "string", description: "Markdown content" },
156
+ type: { type: "string", description: "Type: content, task, decision, blocker" },
157
+ position: { type: "number", description: "Order position" }
158
+ },
159
+ required: ["artifact_id", "section_id", "heading"]
160
+ }
161
+ },
162
+ {
163
+ name: "update_section",
164
+ description: "Update an existing section",
165
+ inputSchema: {
166
+ type: "object",
167
+ properties: {
168
+ artifact_id: { type: "string", description: "Artifact ID" },
169
+ section_id: { type: "string", description: "Section ID" },
170
+ heading: { type: "string", description: "New heading" },
171
+ content: { type: "string", description: "New content" },
172
+ task_status: { type: "string", description: "Task status if type=task" }
173
+ },
174
+ required: ["artifact_id", "section_id"]
175
+ }
176
+ },
177
+ {
178
+ name: "delete_section",
179
+ description: "Delete a section",
180
+ inputSchema: {
181
+ type: "object",
182
+ properties: {
183
+ artifact_id: { type: "string", description: "Artifact ID" },
184
+ section_id: { type: "string", description: "Section ID" }
185
+ },
186
+ required: ["artifact_id", "section_id"]
187
+ }
188
+ },
189
+ // Task tools
190
+ {
191
+ name: "list_tasks",
192
+ description: "List tasks (sections with type=task)",
193
+ inputSchema: {
194
+ type: "object",
195
+ properties: {
196
+ artifact_id: { type: "string", description: "Filter by artifact" },
197
+ status: { type: "string", description: "Filter by status: pending, in_progress, done, blocked" },
198
+ assignee: { type: "string", description: "Filter by assignee agent" }
199
+ },
200
+ required: []
201
+ }
202
+ },
203
+ {
204
+ name: "claim_task",
205
+ description: "Claim a task for the current agent",
206
+ inputSchema: {
207
+ type: "object",
208
+ properties: {
209
+ task_id: { type: "string", description: "Task ID (section UUID)" }
210
+ },
211
+ required: ["task_id"]
212
+ }
213
+ },
214
+ {
215
+ name: "complete_task",
216
+ description: "Mark a task as complete",
217
+ inputSchema: {
218
+ type: "object",
219
+ properties: {
220
+ task_id: { type: "string", description: "Task ID" },
221
+ output_url: { type: "string", description: "URL to deliverable (PR, doc, etc.)" },
222
+ summary: { type: "string", description: "Completion summary" }
223
+ },
224
+ required: ["task_id"]
225
+ }
226
+ },
227
+ {
228
+ name: "block_task",
229
+ description: "Mark a task as blocked",
230
+ inputSchema: {
231
+ type: "object",
232
+ properties: {
233
+ task_id: { type: "string", description: "Task ID" },
234
+ reason: { type: "string", description: "Why it is blocked" },
235
+ blocker_type: { type: "string", description: "Type: decision, dependency, resource, external" }
236
+ },
237
+ required: ["task_id", "reason"]
238
+ }
239
+ },
240
+ // Agent tools
241
+ {
242
+ name: "list_agents",
243
+ description: "List all agents in the organization",
244
+ inputSchema: {
245
+ type: "object",
246
+ properties: {
247
+ status: { type: "string", description: "Filter by status: active, inactive" }
248
+ },
249
+ required: []
250
+ }
251
+ },
252
+ {
253
+ name: "get_agent",
254
+ description: "Get details about an agent",
255
+ inputSchema: {
256
+ type: "object",
257
+ properties: {
258
+ agent_id: { type: "string", description: "Agent ID" }
259
+ },
260
+ required: ["agent_id"]
261
+ }
262
+ },
263
+ {
264
+ name: "create_agent",
265
+ description: "Register a new agent",
266
+ inputSchema: {
267
+ type: "object",
268
+ properties: {
269
+ name: { type: "string", description: "Agent display name" },
270
+ type: { type: "string", description: "Type: pm, engineering, qa, research, content, design" },
271
+ description: { type: "string", description: "What this agent does" },
272
+ capabilities: { type: "array", items: { type: "string" }, description: "Agent capabilities" },
273
+ config: { type: "object", description: "Agent configuration" }
274
+ },
275
+ required: ["name", "type"]
276
+ }
277
+ },
278
+ {
279
+ name: "update_agent",
280
+ description: "Update an agent",
281
+ inputSchema: {
282
+ type: "object",
283
+ properties: {
284
+ agent_id: { type: "string", description: "Agent ID" },
285
+ name: { type: "string", description: "New name" },
286
+ status: { type: "string", description: "New status" },
287
+ config: { type: "object", description: "Updated config" }
288
+ },
289
+ required: ["agent_id"]
290
+ }
291
+ },
292
+ // Blocker tools
293
+ {
294
+ name: "list_blockers",
295
+ description: "List blockers (decisions, dependencies needing resolution)",
296
+ inputSchema: {
297
+ type: "object",
298
+ properties: {
299
+ artifact_id: { type: "string", description: "Filter by artifact" },
300
+ status: { type: "string", description: "Filter by status: open, resolved" }
301
+ },
302
+ required: []
303
+ }
304
+ },
305
+ {
306
+ name: "create_blocker",
307
+ description: "Create a blocker (decision request, dependency, etc.)",
308
+ inputSchema: {
309
+ type: "object",
310
+ properties: {
311
+ artifact_id: { type: "string", description: "Artifact ID" },
312
+ kind: { type: "string", description: "Kind: decision, dependency, resource, external" },
313
+ title: { type: "string", description: "Blocker title" },
314
+ description: { type: "string", description: "Details" },
315
+ options: { type: "array", description: "Options for decisions" },
316
+ blocked_tasks: { type: "array", items: { type: "string" }, description: "Task IDs blocked by this" }
317
+ },
318
+ required: ["artifact_id", "kind", "title"]
319
+ }
320
+ },
321
+ {
322
+ name: "resolve_blocker",
323
+ description: "Resolve a blocker",
324
+ inputSchema: {
325
+ type: "object",
326
+ properties: {
327
+ blocker_id: { type: "string", description: "Blocker ID" },
328
+ resolution: { type: "string", description: "How it was resolved" },
329
+ selected_option: { type: "string", description: "Selected option (for decisions)" }
330
+ },
331
+ required: ["blocker_id", "resolution"]
332
+ }
333
+ },
334
+ // Search tools
335
+ {
336
+ name: "search_artifacts",
337
+ description: "Search artifacts by text query",
338
+ inputSchema: {
339
+ type: "object",
340
+ properties: {
341
+ query: { type: "string", description: "Search query" },
342
+ type: { type: "string", description: "Filter by type" },
343
+ limit: { type: "number", description: "Max results" }
344
+ },
345
+ required: ["query"]
346
+ }
347
+ },
348
+ // Context tools
349
+ {
350
+ name: "get_task_context",
351
+ description: "Get full context for a task (org, project, artifact, related sections)",
352
+ inputSchema: {
353
+ type: "object",
354
+ properties: {
355
+ task_id: { type: "string", description: "Task ID" }
356
+ },
357
+ required: ["task_id"]
358
+ }
359
+ }
360
+ ];
361
+ var ArtyfactsApiClient = class {
362
+ constructor(baseUrl, apiKey) {
363
+ this.baseUrl = baseUrl;
364
+ this.apiKey = apiKey;
365
+ }
366
+ async request(method, path, body) {
367
+ const url = `${this.baseUrl}${path}`;
368
+ const response = await fetch(url, {
369
+ method,
370
+ headers: {
371
+ "Authorization": `Bearer ${this.apiKey}`,
372
+ "Content-Type": "application/json"
373
+ },
374
+ body: body ? JSON.stringify(body) : void 0
375
+ });
376
+ if (!response.ok) {
377
+ const error = await response.json().catch(() => ({ error: "Request failed" }));
378
+ throw new Error(error.error || `HTTP ${response.status}: ${response.statusText}`);
379
+ }
380
+ return response.json();
381
+ }
382
+ get(path) {
383
+ return this.request("GET", path);
384
+ }
385
+ post(path, body) {
386
+ return this.request("POST", path, body);
387
+ }
388
+ patch(path, body) {
389
+ return this.request("PATCH", path, body);
390
+ }
391
+ delete(path) {
392
+ return this.request("DELETE", path);
393
+ }
394
+ };
395
+ var toolHandlers = {
396
+ // Organization
397
+ get_organization: (client) => client.get("/org"),
398
+ // Projects
399
+ list_projects: (client, args) => {
400
+ const params = new URLSearchParams();
401
+ if (args.limit) params.set("limit", String(args.limit));
402
+ if (args.offset) params.set("offset", String(args.offset));
403
+ return client.get(`/projects?${params}`);
404
+ },
405
+ get_project: (client, args) => client.get(`/projects/${args.project_id}`),
406
+ // Artifacts
407
+ list_artifacts: (client, args) => {
408
+ const params = new URLSearchParams();
409
+ if (args.project_id) params.set("project_id", String(args.project_id));
410
+ if (args.type) params.set("type", String(args.type));
411
+ if (args.status) params.set("status", String(args.status));
412
+ if (args.limit) params.set("limit", String(args.limit));
413
+ return client.get(`/artifacts?${params}`);
414
+ },
415
+ get_artifact: (client, args) => client.get(`/artifacts/${args.artifact_id}`),
416
+ create_artifact: (client, args) => client.post("/artifacts", args),
417
+ update_artifact: (client, args) => {
418
+ const { artifact_id, ...body } = args;
419
+ return client.patch(`/artifacts/${artifact_id}`, body);
420
+ },
421
+ // Sections
422
+ list_sections: (client, args) => client.get(`/artifacts/${args.artifact_id}/sections`),
423
+ get_section: (client, args) => client.get(`/artifacts/${args.artifact_id}/sections/${args.section_id}`),
424
+ create_section: (client, args) => {
425
+ const { artifact_id, ...body } = args;
426
+ return client.post(`/artifacts/${artifact_id}/sections`, body);
427
+ },
428
+ update_section: (client, args) => {
429
+ const { artifact_id, section_id, ...body } = args;
430
+ return client.patch(`/artifacts/${artifact_id}/sections/${section_id}`, body);
431
+ },
432
+ delete_section: (client, args) => client.delete(`/artifacts/${args.artifact_id}/sections/${args.section_id}`),
433
+ // Tasks
434
+ list_tasks: (client, args) => {
435
+ const params = new URLSearchParams();
436
+ if (args.artifact_id) params.set("artifact_id", String(args.artifact_id));
437
+ if (args.status) params.set("status", String(args.status));
438
+ if (args.assignee) params.set("assignee", String(args.assignee));
439
+ return client.get(`/tasks?${params}`);
440
+ },
441
+ claim_task: (client, args) => client.post(`/tasks/${args.task_id}/claim`),
442
+ complete_task: (client, args) => {
443
+ const { task_id, ...body } = args;
444
+ return client.post(`/tasks/${task_id}/complete`, body);
445
+ },
446
+ block_task: (client, args) => {
447
+ const { task_id, ...body } = args;
448
+ return client.post(`/tasks/${task_id}/block`, body);
449
+ },
450
+ // Agents
451
+ list_agents: (client, args) => {
452
+ const params = new URLSearchParams();
453
+ if (args.status) params.set("status", String(args.status));
454
+ return client.get(`/agents?${params}`);
455
+ },
456
+ get_agent: (client, args) => client.get(`/agents/${args.agent_id}`),
457
+ create_agent: (client, args) => client.post("/agents", args),
458
+ update_agent: (client, args) => {
459
+ const { agent_id, ...body } = args;
460
+ return client.patch(`/agents/${agent_id}`, body);
461
+ },
462
+ // Blockers
463
+ list_blockers: (client, args) => {
464
+ const params = new URLSearchParams();
465
+ if (args.artifact_id) params.set("artifact_id", String(args.artifact_id));
466
+ if (args.status) params.set("status", String(args.status));
467
+ return client.get(`/blockers?${params}`);
468
+ },
469
+ create_blocker: (client, args) => {
470
+ const { artifact_id, ...body } = args;
471
+ return client.post(`/artifacts/${artifact_id}/blockers`, body);
472
+ },
473
+ resolve_blocker: (client, args) => {
474
+ const { blocker_id, ...body } = args;
475
+ return client.post(`/blockers/${blocker_id}/resolve`, body);
476
+ },
477
+ // Search
478
+ search_artifacts: (client, args) => {
479
+ const params = new URLSearchParams();
480
+ params.set("q", String(args.query));
481
+ if (args.type) params.set("type", String(args.type));
482
+ if (args.limit) params.set("limit", String(args.limit));
483
+ return client.get(`/search?${params}`);
484
+ },
485
+ // Context
486
+ get_task_context: (client, args) => client.get(`/tasks/${args.task_id}/context`)
487
+ };
488
+ var ArtyfactsMcpServer = class {
489
+ server;
490
+ client;
491
+ config;
492
+ constructor(config) {
493
+ this.config = config;
494
+ this.client = new ArtyfactsApiClient(
495
+ config.baseUrl || "https://artyfacts.dev/api/v1",
496
+ config.apiKey
497
+ );
498
+ this.server = new import_server.Server(
499
+ {
500
+ name: config.name || "artyfacts-mcp",
501
+ version: config.version || "1.0.0"
502
+ },
503
+ {
504
+ capabilities: {
505
+ tools: {}
506
+ }
507
+ }
508
+ );
509
+ this.setupHandlers();
510
+ }
511
+ setupHandlers() {
512
+ this.server.setRequestHandler(import_types.ListToolsRequestSchema, async () => {
513
+ return { tools: ARTYFACTS_TOOLS };
514
+ });
515
+ this.server.setRequestHandler(import_types.CallToolRequestSchema, async (request) => {
516
+ const { name, arguments: args } = request.params;
517
+ const handler = toolHandlers[name];
518
+ if (!handler) {
519
+ return {
520
+ content: [{ type: "text", text: `Unknown tool: ${name}` }],
521
+ isError: true
522
+ };
523
+ }
524
+ try {
525
+ const result = await handler(this.client, args || {});
526
+ return {
527
+ content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
528
+ };
529
+ } catch (error) {
530
+ const message = error instanceof Error ? error.message : String(error);
531
+ return {
532
+ content: [{ type: "text", text: `Error: ${message}` }],
533
+ isError: true
534
+ };
535
+ }
536
+ });
537
+ }
538
+ async start() {
539
+ const transport = new import_stdio.StdioServerTransport();
540
+ await this.server.connect(transport);
541
+ console.error(`Artyfacts MCP server running (${ARTYFACTS_TOOLS.length} tools)`);
542
+ }
543
+ getServer() {
544
+ return this.server;
545
+ }
546
+ };
547
+ function createMcpServer(config) {
548
+ return new ArtyfactsMcpServer(config);
549
+ }
550
+ async function startServer(server) {
551
+ await server.start();
552
+ }
553
+ // Annotate the CommonJS export names for ESM import in node:
554
+ 0 && (module.exports = {
555
+ ArtyfactsMcpServer,
556
+ createMcpServer,
557
+ startServer
558
+ });
@@ -0,0 +1,32 @@
1
+ import { Server } from '@modelcontextprotocol/sdk/server/index.js';
2
+
3
+ /**
4
+ * Artyfacts MCP Server Implementation
5
+ *
6
+ * Exposes Artyfacts tools via MCP (Model Context Protocol) for use
7
+ * with Claude Code and other MCP-compatible clients.
8
+ */
9
+
10
+ interface McpServerConfig {
11
+ /** Artyfacts API key */
12
+ apiKey: string;
13
+ /** Artyfacts API base URL */
14
+ baseUrl?: string;
15
+ /** Server name */
16
+ name?: string;
17
+ /** Server version */
18
+ version?: string;
19
+ }
20
+ declare class ArtyfactsMcpServer {
21
+ private server;
22
+ private client;
23
+ private config;
24
+ constructor(config: McpServerConfig);
25
+ private setupHandlers;
26
+ start(): Promise<void>;
27
+ getServer(): Server;
28
+ }
29
+ declare function createMcpServer(config: McpServerConfig): ArtyfactsMcpServer;
30
+ declare function startServer(server: ArtyfactsMcpServer): Promise<void>;
31
+
32
+ export { ArtyfactsMcpServer, type McpServerConfig, createMcpServer, startServer };
@@ -0,0 +1,32 @@
1
+ import { Server } from '@modelcontextprotocol/sdk/server/index.js';
2
+
3
+ /**
4
+ * Artyfacts MCP Server Implementation
5
+ *
6
+ * Exposes Artyfacts tools via MCP (Model Context Protocol) for use
7
+ * with Claude Code and other MCP-compatible clients.
8
+ */
9
+
10
+ interface McpServerConfig {
11
+ /** Artyfacts API key */
12
+ apiKey: string;
13
+ /** Artyfacts API base URL */
14
+ baseUrl?: string;
15
+ /** Server name */
16
+ name?: string;
17
+ /** Server version */
18
+ version?: string;
19
+ }
20
+ declare class ArtyfactsMcpServer {
21
+ private server;
22
+ private client;
23
+ private config;
24
+ constructor(config: McpServerConfig);
25
+ private setupHandlers;
26
+ start(): Promise<void>;
27
+ getServer(): Server;
28
+ }
29
+ declare function createMcpServer(config: McpServerConfig): ArtyfactsMcpServer;
30
+ declare function startServer(server: ArtyfactsMcpServer): Promise<void>;
31
+
32
+ export { ArtyfactsMcpServer, type McpServerConfig, createMcpServer, startServer };
package/dist/server.js ADDED
@@ -0,0 +1,10 @@
1
+ import {
2
+ ArtyfactsMcpServer,
3
+ createMcpServer,
4
+ startServer
5
+ } from "./chunk-ZGKINVWK.js";
6
+ export {
7
+ ArtyfactsMcpServer,
8
+ createMcpServer,
9
+ startServer
10
+ };
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@artyfacts/mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "MCP server exposing Artyfacts tools for Claude Code",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.mjs",
8
+ "types": "dist/index.d.ts",
9
+ "bin": {
10
+ "artyfacts-mcp": "bin/artyfacts-mcp.js"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.js",
16
+ "types": "./dist/index.d.ts"
17
+ }
18
+ },
19
+ "scripts": {
20
+ "build": "tsup src/index.ts src/server.ts --format cjs,esm --dts",
21
+ "dev": "tsup src/index.ts src/server.ts --format cjs,esm --dts --watch",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "keywords": ["artyfacts", "mcp", "claude", "ai", "tools"],
25
+ "author": "Artyfacts",
26
+ "license": "MIT",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/artygracie/artyfacts.git",
30
+ "directory": "packages/mcp-server"
31
+ },
32
+ "dependencies": {
33
+ "@modelcontextprotocol/sdk": "^1.12.0"
34
+ },
35
+ "devDependencies": {
36
+ "tsup": "^8.0.0",
37
+ "typescript": "^5.3.0"
38
+ },
39
+ "peerDependencies": {
40
+ "@artyfacts/claude": "^1.3.0"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "@artyfacts/claude": {
44
+ "optional": true
45
+ }
46
+ }
47
+ }