opentool 0.19.1 → 0.19.3
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 +6 -0
- package/dist/adapters/news/index.d.ts +3 -0
- package/dist/adapters/news/index.js.map +1 -1
- package/dist/index.d.ts +3 -14
- package/dist/index.js +124 -437
- package/dist/index.js.map +1 -1
- package/dist/runtime/index.d.ts +16 -0
- package/dist/runtime/index.js +804 -0
- package/dist/runtime/index.js.map +1 -0
- package/package.json +5 -1
- package/templates/base/package.json +1 -1
- package/templates/polymarket-simple-trade/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
|
|
2
|
+
import { I as InternalToolDefinition } from '../index-9Z3wo28l.js';
|
|
3
|
+
import 'zod';
|
|
4
|
+
import '../payment-BLm1ltur.js';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Create local development server for MCP tooling.
|
|
8
|
+
*/
|
|
9
|
+
declare function createDevServer(tools: InternalToolDefinition[]): Server;
|
|
10
|
+
/**
|
|
11
|
+
* Create stdio server for use with AWS Lambda MCP Adapter
|
|
12
|
+
*/
|
|
13
|
+
declare function createStdioServer(tools?: InternalToolDefinition[]): Promise<void>;
|
|
14
|
+
declare function resolveRuntimePath(value: string): string;
|
|
15
|
+
|
|
16
|
+
export { createDevServer, createStdioServer, resolveRuntimePath };
|