@dypai-ai/mcp 1.0.4 → 1.0.6
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 +3 -3
- package/src/{index.mjs → index.js} +6 -6
- package/src/tools/{bulk-upsert.mjs → bulk-upsert.js} +1 -1
- package/src/tools/{deploy.mjs → deploy.js} +2 -2
- package/src/tools/{domains.mjs → domains.js} +1 -1
- package/src/tools/{scaffold.mjs → scaffold.js} +1 -1
- package/src/tools/{status.mjs → status.js} +1 -1
- package/bin/cli.js +0 -2
- /package/src/{api.mjs → api.js} +0 -0
- /package/src/tools/{proxy.mjs → proxy.js} +0 -0
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dypai-ai/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "DYPAI MCP Server — AI agent toolkit for building and deploying full-stack apps",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "src/index.js",
|
|
6
7
|
"bin": {
|
|
7
|
-
"dypai-mcp": "
|
|
8
|
+
"dypai-mcp": "src/index.js"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
|
-
"bin/",
|
|
11
11
|
"src/"
|
|
12
12
|
],
|
|
13
13
|
"keywords": [
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
22
|
import { createInterface } from "readline"
|
|
23
|
-
import { deployTool } from "./tools/deploy.
|
|
24
|
-
import { scaffoldTool } from "./tools/scaffold.
|
|
25
|
-
import { addDomainTool, listDomainsTool, removeDomainTool } from "./tools/domains.
|
|
26
|
-
import { frontendStatusTool, buildStatusTool, listDeploymentsTool, getDeploymentLogsTool } from "./tools/status.
|
|
27
|
-
import { bulkUpsertTool } from "./tools/bulk-upsert.
|
|
28
|
-
import { proxyToolCall } from "./tools/proxy.
|
|
23
|
+
import { deployTool } from "./tools/deploy.js"
|
|
24
|
+
import { scaffoldTool } from "./tools/scaffold.js"
|
|
25
|
+
import { addDomainTool, listDomainsTool, removeDomainTool } from "./tools/domains.js"
|
|
26
|
+
import { frontendStatusTool, buildStatusTool, listDeploymentsTool, getDeploymentLogsTool } from "./tools/status.js"
|
|
27
|
+
import { bulkUpsertTool } from "./tools/bulk-upsert.js"
|
|
28
|
+
import { proxyToolCall } from "./tools/proxy.js"
|
|
29
29
|
|
|
30
30
|
// ── Local tools (filesystem access) ─────────────────────────────────────────
|
|
31
31
|
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
|
|
9
9
|
import { readFileSync, readdirSync, statSync, existsSync } from "fs"
|
|
10
10
|
import { join, relative } from "path"
|
|
11
|
-
import { api } from "../api.
|
|
11
|
+
import { api } from "../api.js"
|
|
12
12
|
|
|
13
13
|
const MAX_SOURCE_SIZE = 50 * 1024 * 1024
|
|
14
14
|
const IGNORE_DIRS = new Set(["node_modules", "dist", "build", "out", ".git", ".next", ".cache", ".turbo", ".vercel", ".output", "coverage"])
|
|
15
|
-
const SOURCE_EXTS = new Set([".ts", ".tsx", ".js", ".jsx", ".
|
|
15
|
+
const SOURCE_EXTS = new Set([".ts", ".tsx", ".js", ".jsx", ".js", ".cjs", ".css", ".scss", ".less", ".html", ".json", ".toml", ".yaml", ".yml", ".md", ".mdx", ".txt", ".svg", ".ico", ".webmanifest"])
|
|
16
16
|
const IMAGE_EXTS = new Set([".png", ".jpg", ".jpeg", ".gif", ".webp", ".avif", ".ico", ".svg"])
|
|
17
17
|
const BLOCKED = new Set([".env", ".env.local", ".env.production", ".env.development", ".DS_Store", "Thumbs.db"])
|
|
18
18
|
const MAX_IMAGE = 2 * 1024 * 1024
|
package/bin/cli.js
DELETED
/package/src/{api.mjs → api.js}
RENAMED
|
File without changes
|
|
File without changes
|