@clipform/mcp-server 1.26.0 → 1.27.0
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/dist/{chunk-GQEUGIRA.js → chunk-45T6WTYP.js} +2 -2
- package/dist/{chunk-CJFYORUZ.js → chunk-6W5NTDW7.js} +8 -7
- package/dist/{chunk-CJFYORUZ.js.map → chunk-6W5NTDW7.js.map} +1 -1
- package/dist/{chunk-4ODCLOG6.js → chunk-HUHWR2I6.js} +2 -2
- package/dist/{chunk-2ORCTK3I.js → chunk-W3KRLWH2.js} +14 -10
- package/dist/{chunk-2ORCTK3I.js.map → chunk-W3KRLWH2.js.map} +1 -1
- package/dist/index.js +4 -4
- package/dist/prompts.js +2 -2
- package/dist/resources.js +2 -2
- package/dist/server.js +4 -4
- package/package.json +1 -1
- /package/dist/{chunk-GQEUGIRA.js.map → chunk-45T6WTYP.js.map} +0 -0
- /package/dist/{chunk-4ODCLOG6.js.map → chunk-HUHWR2I6.js.map} +0 -0
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
WORKFLOW_TYPES,
|
|
3
3
|
getDiscoveryParams,
|
|
4
4
|
getSessionContextWithAuth
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-6W5NTDW7.js";
|
|
6
6
|
import {
|
|
7
7
|
__export
|
|
8
8
|
} from "./chunk-HCZI2UJ5.js";
|
|
@@ -4671,4 +4671,4 @@ export {
|
|
|
4671
4671
|
getWorkflowText,
|
|
4672
4672
|
registerPrompts
|
|
4673
4673
|
};
|
|
4674
|
-
//# sourceMappingURL=chunk-
|
|
4674
|
+
//# sourceMappingURL=chunk-45T6WTYP.js.map
|
|
@@ -1752,14 +1752,15 @@ function getUrls() {
|
|
|
1752
1752
|
};
|
|
1753
1753
|
}
|
|
1754
1754
|
if (ENV.isDevelopment) {
|
|
1755
|
+
const api = process.env.NEXT_PUBLIC_API_URL || "http://localhost:3003";
|
|
1755
1756
|
return {
|
|
1756
|
-
marketing: "http://localhost:3002",
|
|
1757
|
-
dashboard: "http://localhost:3000",
|
|
1758
|
-
viewer: "http://localhost:3001",
|
|
1759
|
-
api
|
|
1757
|
+
marketing: process.env.NEXT_PUBLIC_MARKETING_URL || "http://localhost:3002",
|
|
1758
|
+
dashboard: process.env.NEXT_PUBLIC_DASHBOARD_URL || "http://localhost:3000",
|
|
1759
|
+
viewer: process.env.NEXT_PUBLIC_VIEWER_URL || "http://localhost:3001",
|
|
1760
|
+
api,
|
|
1760
1761
|
// No separate MCP host in dev - tools live on the api subpath.
|
|
1761
|
-
mcp: "
|
|
1762
|
-
docs: "http://localhost:3004"
|
|
1762
|
+
mcp: api + "/mcp",
|
|
1763
|
+
docs: process.env.NEXT_PUBLIC_DOCS_URL || "http://localhost:3004"
|
|
1763
1764
|
};
|
|
1764
1765
|
}
|
|
1765
1766
|
return {
|
|
@@ -2044,4 +2045,4 @@ export {
|
|
|
2044
2045
|
getSessionContextWithAuth,
|
|
2045
2046
|
getSessionContext
|
|
2046
2047
|
};
|
|
2047
|
-
//# sourceMappingURL=chunk-
|
|
2048
|
+
//# sourceMappingURL=chunk-6W5NTDW7.js.map
|