@agentailor/create-mcp-server 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,15 +5,15 @@ export function getPackageJsonTemplate(projectName, options) {
|
|
|
5
5
|
let devDependencies;
|
|
6
6
|
const commonDevDependencies = {
|
|
7
7
|
typescript: '^5.9.3',
|
|
8
|
-
'@modelcontextprotocol/inspector': '^0.
|
|
9
|
-
'@types/node': '^25.0
|
|
8
|
+
'@modelcontextprotocol/inspector': '^0.20.0',
|
|
9
|
+
'@types/node': '^25.3.0',
|
|
10
10
|
};
|
|
11
|
-
const zodDependency = { zod: '^4.3.
|
|
12
|
-
const dotEnvDependency = { dotenv: '^17.
|
|
11
|
+
const zodDependency = { zod: '^4.3.6' };
|
|
12
|
+
const dotEnvDependency = { dotenv: '^17.3.1' };
|
|
13
13
|
if (framework === 'fastmcp') {
|
|
14
14
|
// FastMCP dependencies - simpler setup
|
|
15
15
|
dependencies = {
|
|
16
|
-
fastmcp: '^3.
|
|
16
|
+
fastmcp: '^3.33.0',
|
|
17
17
|
...zodDependency,
|
|
18
18
|
...dotEnvDependency,
|
|
19
19
|
};
|
|
@@ -24,7 +24,7 @@ export function getPackageJsonTemplate(projectName, options) {
|
|
|
24
24
|
else {
|
|
25
25
|
// Official SDK dependencies
|
|
26
26
|
dependencies = {
|
|
27
|
-
'@modelcontextprotocol/sdk': '^1.
|
|
27
|
+
'@modelcontextprotocol/sdk': '^1.26.0',
|
|
28
28
|
express: '^5.2.1',
|
|
29
29
|
...zodDependency,
|
|
30
30
|
...dotEnvDependency,
|