@coop-tech/mcp-sidecar 0.0.1 → 0.0.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/dist/cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { parseArgs } from 'node:util';
3
- import { connectSidecar } from './index.js';
3
+ import { connectSidecar } from './index';
4
4
  function printUsage() {
5
5
  console.log(`Usage: coop-mcp-sidecar [options] [-- command [args...]]
6
6
 
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- export { Sidecar } from './sidecar.js';
2
- export type { SidecarConfig } from './sidecar.js';
3
- export type { ToolInfo } from './types.js';
4
- import type { SidecarConfig } from './sidecar.js';
5
- import { Sidecar } from './sidecar.js';
1
+ export { Sidecar } from './sidecar';
2
+ export type { SidecarConfig } from './sidecar';
3
+ export * from './types';
4
+ import type { SidecarConfig } from './sidecar';
5
+ import { Sidecar } from './sidecar';
6
6
  /**
7
7
  * Connect an MCP server to coop.tech as a sidecar.
8
8
  *
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
- export { Sidecar } from './sidecar.js';
2
- import { Sidecar } from './sidecar.js';
1
+ export { Sidecar } from './sidecar';
2
+ export * from './types';
3
+ import { Sidecar } from './sidecar';
3
4
  /**
4
5
  * Connect an MCP server to coop.tech as a sidecar.
5
6
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coop-tech/mcp-sidecar",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Connect MCP servers to coop.tech as sidecars",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -31,5 +31,10 @@
31
31
  "sidecar",
32
32
  "coop"
33
33
  ],
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/cooperativetech/coop-tech-typescript.git",
37
+ "directory": "packages/mcp-sidecar"
38
+ },
34
39
  "license": "MIT"
35
40
  }