diff --git a/package.json b/package.json index 219ec6d..6de1b65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mcp-framework", - "version": "0.1.18", + "version": "0.1.19", "description": "Framework for building Model Context Protocol (MCP) servers in Typescript", "type": "module", "author": "Alex Andru ", diff --git a/src/cli/framework/build.ts b/src/cli/framework/build.ts index 4a00b7b..fcfe321 100644 --- a/src/cli/framework/build.ts +++ b/src/cli/framework/build.ts @@ -15,8 +15,7 @@ export async function buildFramework() { ]); if (pkgContent && tsConfigContent) { - const pkg = JSON.parse(pkgContent); - return pkg.name === 'composer-mcp' ? directory : undefined; + return directory; } } catch { return undefined;