@adhd/apigen-plugin-mcp 0.1.0 → 0.1.1

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/lib/generate.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { PluginInput, PluginOutput } from '@adhd/apigen-core';
1
+ import { PluginInput, PluginOutput } from '@adhd/apigen-core-client';
2
2
 
3
3
  export declare function generate(input: PluginInput): PluginOutput;
package/lib/plugin.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { OutputPlugin } from '@adhd/apigen-core';
1
+ import { OutputPlugin } from '@adhd/apigen-core-client';
2
2
 
3
3
  export declare const mcpPlugin: OutputPlugin;
4
4
  export default mcpPlugin;
package/lib/run.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { RunInput } from '@adhd/apigen-core';
1
+ import { RunInput } from '@adhd/apigen-core-client';
2
2
 
3
3
  export declare function run(input: RunInput): Promise<void>;
package/lib/stream.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ApiStream } from '@adhd/apigen-runtime';
1
+ import { ApiStream } from '@adhd/apigen-engine-runtime';
2
2
 
3
3
  /** A single MCP content item (text carrier). */
4
4
  export interface McpTextContent {
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "@adhd/apigen-plugin-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "main": "./index.js",
5
5
  "dependencies": {
6
- "@adhd/apigen-core": "^0.1.0",
7
- "@adhd/apigen-runtime": "^0.1.0",
8
- "@modelcontextprotocol/sdk": "1.29.0"
6
+ "@modelcontextprotocol/sdk": "1.29.0",
7
+ "@adhd/apigen-core-client": "^0.1.0",
8
+ "@adhd/apigen-engine-runtime": "^0.1.0",
9
+ "@adhd/apigen-base-errors": "^0.1.1",
10
+ "@adhd/apigen-engine-naming": "^0.1.1"
9
11
  },
10
12
  "publishConfig": {
11
13
  "access": "public"