We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 09c767f + 6e89e31 commit 40789f3Copy full SHA for 40789f3
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mcp-framework",
3
- "version": "0.1.18",
+ "version": "0.1.19",
4
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
5
"type": "module",
6
"author": "Alex Andru <alex@andru.codes>",
src/cli/framework/build.ts
@@ -15,8 +15,7 @@ export async function buildFramework() {
15
]);
16
17
if (pkgContent && tsConfigContent) {
18
- const pkg = JSON.parse(pkgContent);
19
- return pkg.name === 'composer-mcp' ? directory : undefined;
+ return directory;
20
}
21
} catch {
22
return undefined;
0 commit comments