Skip to content

Commit 40789f3

Browse files
authoredJan 21, 2025
Merge pull request #18 from QuantGeekDev/fix/project-name
fix: remove project name
2 parents 09c767f + 6e89e31 commit 40789f3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-framework",
3-
"version": "0.1.18",
3+
"version": "0.1.19",
44
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
55
"type": "module",
66
"author": "Alex Andru <alex@andru.codes>",

‎src/cli/framework/build.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ export async function buildFramework() {
1515
]);
1616

1717
if (pkgContent && tsConfigContent) {
18-
const pkg = JSON.parse(pkgContent);
19-
return pkg.name === 'composer-mcp' ? directory : undefined;
18+
return directory;
2019
}
2120
} catch {
2221
return undefined;

0 commit comments

Comments
 (0)
Please sign in to comment.