Skip to content

Commit f281451

Browse files
authored
Merge pull request #19 from QuantGeekDev/fix/remove-findup
fix: remove findup
2 parents 40789f3 + be6f5b0 commit f281451

File tree

3 files changed

+58
-28
lines changed

3 files changed

+58
-28
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.19",
3+
"version": "0.1.20",
44
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
55
"type": "module",
66
"author": "Alex Andru <[email protected]>",

src/cli/framework/build.ts

+56-26
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,82 @@
1+
#!/usr/bin/env node
12
import { execa } from "execa";
23
import { readFile, writeFile } from "fs/promises";
34
import { join } from "path";
4-
import { findUp } from "find-up";
5+
6+
process.stderr.write("MCP Build Script Starting...\n");
57

68
export async function buildFramework() {
7-
const projectRoot = await findUp(async directory => {
8-
const pkgPath = join(directory, 'package.json');
9-
const tsConfigPath = join(directory, 'tsconfig.json');
9+
process.stderr.write("Finding project root...\n");
10+
11+
const startDir = process.cwd();
12+
process.stderr.write(`Starting search from: ${startDir}\n`);
13+
14+
let projectRoot: string | null = null;
15+
try {
16+
const pkgPath = join(startDir, 'package.json');
17+
const tsConfigPath = join(startDir, 'tsconfig.json');
1018

11-
try {
12-
const [pkgContent, tsConfigContent] = await Promise.all([
13-
readFile(pkgPath, 'utf8').catch(() => null),
14-
readFile(tsConfigPath, 'utf8').catch(() => null)
15-
]);
16-
17-
if (pkgContent && tsConfigContent) {
18-
return directory;
19-
}
20-
} catch {
21-
return undefined;
19+
process.stderr.write(`Checking for package.json at: ${pkgPath}\n`);
20+
const [pkgContent, _tsConfigContent] = await Promise.all([
21+
readFile(pkgPath, 'utf8'),
22+
readFile(tsConfigPath, 'utf8')
23+
]);
24+
25+
const pkg = JSON.parse(pkgContent);
26+
if (pkg.dependencies?.["mcp-framework"]) {
27+
projectRoot = startDir;
28+
process.stderr.write(`Found MCP project at current directory: ${projectRoot}\n`);
2229
}
23-
});
30+
} catch (error) {
31+
process.stderr.write(`Error checking current directory: ${error instanceof Error ? error.message : String(error)}\n`);
32+
}
2433

2534
if (!projectRoot) {
26-
throw new Error('Could not find target project root directory');
35+
process.stderr.write("Error: Current directory is not an MCP project\n");
36+
throw new Error('Current directory must be an MCP project with mcp-framework as a dependency');
2737
}
2838

2939
try {
30-
await execa("tsc", [], {
40+
process.stderr.write(`Running tsc in ${projectRoot}\n`);
41+
42+
const tscCommand = process.platform === 'win32' ? ['npx.cmd', 'tsc'] : ['npx', 'tsc'];
43+
44+
await execa(tscCommand[0], [tscCommand[1]], {
45+
cwd: projectRoot,
3146
stdio: "inherit",
32-
reject: true,
33-
cwd: projectRoot
47+
env: {
48+
...process.env,
49+
ELECTRON_RUN_AS_NODE: "1",
50+
FORCE_COLOR: "1"
51+
}
3452
});
3553

3654
const distPath = join(projectRoot, "dist");
3755
const projectIndexPath = join(distPath, "index.js");
3856
const shebang = "#!/usr/bin/env node\n";
3957

40-
const content = await readFile(projectIndexPath, "utf8");
41-
if (!content.startsWith(shebang)) {
42-
await writeFile(projectIndexPath, shebang + content);
58+
process.stderr.write("Adding shebang to index.js...\n");
59+
try {
60+
const content = await readFile(projectIndexPath, "utf8");
61+
if (!content.startsWith(shebang)) {
62+
await writeFile(projectIndexPath, shebang + content);
63+
}
64+
} catch (error) {
65+
process.stderr.write(`Error processing index.js: ${error instanceof Error ? error.message : String(error)}\n`);
66+
throw error;
4367
}
68+
69+
process.stderr.write("Build completed successfully!\n");
4470
} catch (error) {
45-
console.error("Build failed:", error instanceof Error ? error.message : error);
71+
process.stderr.write(`Build error: ${error instanceof Error ? error.message : String(error)}\n`);
4672
process.exit(1);
4773
}
4874
}
4975

50-
if (import.meta.url === new URL(import.meta.url).href) {
51-
buildFramework().catch(console.error);
76+
if (import.meta.url.startsWith('file:')) {
77+
process.stderr.write("Script running as main module\n");
78+
buildFramework().catch(error => {
79+
process.stderr.write(`Fatal error: ${error instanceof Error ? error.message : String(error)}\n`);
80+
process.exit(1);
81+
});
5282
}

src/cli/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const program = new Command();
1111
program
1212
.name("mcp")
1313
.description("CLI for managing MCP server projects")
14-
.version("0.1.8");
14+
.version("0.1.20");
1515

1616
program
1717
.command("build")

0 commit comments

Comments
 (0)