diff --git a/packages/mcp-server-utils/package.json b/packages/mcp-server-utils/package.json index 23e4bd1..6f9c443 100644 --- a/packages/mcp-server-utils/package.json +++ b/packages/mcp-server-utils/package.json @@ -16,10 +16,10 @@ "author": "Steve Calvert ", "type": "module", "exports": { - "./auth": { - "types": "./build/auth/index.d.ts", - "import": "./build/auth/index.js", - "default": "./build/auth/index.js" + ".": { + "types": "./build/index.d.ts", + "import": "./build/index.js", + "default": "./build/index.js" }, "./config": { "types": "./build/config/index.d.ts", @@ -31,21 +31,6 @@ "import": "./build/common/errors.js", "default": "./build/common/errors.js" }, - "./tools/chat": { - "types": "./build/tools/chat.d.ts", - "import": "./build/tools/chat.js", - "default": "./build/tools/chat.js" - }, - "./tools/people-profile-search": { - "types": "./build/tools/people_profile_search.d.ts", - "import": "./build/tools/people_profile_search.js", - "default": "./build/tools/people_profile_search.js" - }, - "./tools/search": { - "types": "./build/tools/search.d.ts", - "import": "./build/tools/search.js", - "default": "./build/tools/search.js" - }, "./util": { "types": "./build/util/index.d.ts", "import": "./build/util/index.js", diff --git a/packages/mcp-server-utils/src/index.ts b/packages/mcp-server-utils/src/index.ts new file mode 100644 index 0000000..8f6c483 --- /dev/null +++ b/packages/mcp-server-utils/src/index.ts @@ -0,0 +1,6 @@ +export * from './common/errors.js'; +export * from './common/version.js'; +export * from './config/index.js'; +export * from './log/logger.js'; +export * from './util/index.js'; +export * from './xdg/xdg.js';