create-catalyst-app-internal 0.1.13 → 0.1.14

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-catalyst-app-internal",
3
3
  "bin": "scripts/cli.cjs",
4
- "version": "0.1.13",
4
+ "version": "0.1.14",
5
5
  "description": "cli package to scaffold Catalyst application",
6
6
  "dependencies": {
7
7
  "commander": "^8.2.0",
package/scripts/cli.cjs CHANGED
@@ -43,6 +43,13 @@ const program = new Commander.Command()
43
43
  return
44
44
  }
45
45
 
46
+ if (process.argv.includes("mcp-setup")) {
47
+ execSync(` cd ${projectName} && node node_modules/catalyst-core-internal/mcp_v2/setup.js`, {
48
+ stdio: "inherit",
49
+ })
50
+ return
51
+ }
52
+
46
53
  console.log(cyan(`Using create-catalyst-app version ${bold(packageJson.version)}`))
47
54
 
48
55
  // Use options provided through commander or prompt the user
@@ -93,11 +100,8 @@ const program = new Commander.Command()
93
100
  const commonCodeDirectory = "package/templates/common"
94
101
  const selectedTemplateCode = `package/templates/${repositorySuffixes[stateManagement]}-${repositorySuffixes[language]}`
95
102
  const tailwindCodeDirectory = "package/templates/tailwind"
96
- const mcpCodeDirectory = "package/templates/mcp-root"
97
-
98
103
  const subDirectoriesToExtract = [commonCodeDirectory, selectedTemplateCode]
99
104
  if (tailWindSupport) subDirectoriesToExtract.push(tailwindCodeDirectory)
100
- if (mcpSupport) subDirectoriesToExtract.push(mcpCodeDirectory)
101
105
 
102
106
  const extractionDestination = `/${projectName}/`
103
107
  let tempDir
@@ -122,7 +126,10 @@ const program = new Commander.Command()
122
126
  }
123
127
 
124
128
  if (mcpSupport) {
125
- execSync(`cd ${projectName} && npm i @modelcontextprotocol/sdk`, { stdio: "inherit" })
129
+ execSync(
130
+ ` cd ${projectName} && node node_modules/catalyst-core-internal/mcp_v2/setup.js`,
131
+ { stdio: "inherit" }
132
+ )
126
133
  }
127
134
 
128
135
  execSync(
@@ -203,9 +210,6 @@ const program = new Commander.Command()
203
210
  if (entry.path.startsWith(tailwindCodeDirectory)) {
204
211
  entry.path = entry.path.replace(tailwindCodeDirectory, extractionDestination)
205
212
  }
206
- if (entry.path.startsWith(mcpCodeDirectory)) {
207
- entry.path = entry.path.replace(mcpCodeDirectory, extractionDestination)
208
- }
209
213
  },
210
214
  })
211
215
  } catch (e) {
@@ -1,55 +0,0 @@
1
- const { McpServer } = require("@modelcontextprotocol/sdk/server/mcp.js")
2
- const { StdioServerTransport } = require("@modelcontextprotocol/sdk/server/stdio.js")
3
-
4
- const fetchContextFromGitHub = async () => {
5
- const url = "https://raw.githubusercontent.com/tata1mg/catalyst-core/main/context.md"
6
- const response = await fetch(url)
7
-
8
- if (!response.ok) {
9
- throw new Error(`HTTP ${response.status}: Failed to fetch context from GitHub`)
10
- }
11
-
12
- return await response.text()
13
- }
14
-
15
- const server = new McpServer({
16
- name: "catalyst",
17
- version: "1.0.0",
18
- capabilities: {
19
- tools: {},
20
- },
21
- })
22
-
23
- server.tool("get_context", "Complete context of catalyst framework", {}, async () => {
24
- try {
25
- const context = await fetchContextFromGitHub()
26
- return {
27
- content: [
28
- {
29
- type: "text",
30
- text: context,
31
- },
32
- ],
33
- }
34
- } catch (error) {
35
- return {
36
- content: [
37
- {
38
- type: "text",
39
- text: `Error fetching context: ${error.message}`,
40
- },
41
- ],
42
- }
43
- }
44
- })
45
-
46
- const init = async () => {
47
- try {
48
- const transport = new StdioServerTransport()
49
- await server.connect(transport)
50
- } catch (error) {
51
- console.error("Error starting MCP server:", error)
52
- }
53
- }
54
-
55
- init()