@clipform/mcp-server 1.25.0 → 1.26.1
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/README.md +3 -3
- package/dist/{chunk-WGIWNARP.js → chunk-2UCFH6N2.js} +2 -2
- package/dist/{chunk-H7XSNUKI.js → chunk-4YHOKP2Y.js} +10 -10
- package/dist/chunk-4YHOKP2Y.js.map +1 -0
- package/dist/{chunk-X5HRS3GG.js → chunk-6G35U7YP.js} +10 -9
- package/dist/{chunk-X5HRS3GG.js.map → chunk-6G35U7YP.js.map} +1 -1
- package/dist/{chunk-2SXOLMHL.js → chunk-FHRDJGJT.js} +327 -241
- package/dist/chunk-FHRDJGJT.js.map +1 -0
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/prompts.js +2 -2
- package/dist/resources.js +2 -2
- package/dist/server.js +4 -4
- package/package.json +9 -9
- package/dist/chunk-2SXOLMHL.js.map +0 -1
- package/dist/chunk-H7XSNUKI.js.map +0 -1
- /package/dist/{chunk-WGIWNARP.js.map → chunk-2UCFH6N2.js.map} +0 -0
|
@@ -1748,18 +1748,19 @@ function getUrls() {
|
|
|
1748
1748
|
viewer: "https://viewer-dev.smith-forge.com",
|
|
1749
1749
|
api: "https://api-dev.smith-forge.com",
|
|
1750
1750
|
mcp: "https://api-dev.smith-forge.com/mcp",
|
|
1751
|
-
docs: "https://
|
|
1751
|
+
docs: "https://clipform.io/docs"
|
|
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 {
|
|
@@ -1770,7 +1771,7 @@ function getUrls() {
|
|
|
1770
1771
|
// Dedicated subdomain for the remote MCP server. Same Render service
|
|
1771
1772
|
// as `api`, just routed by Host header. Token audience is bound here.
|
|
1772
1773
|
mcp: "https://mcp.clipform.io",
|
|
1773
|
-
docs: "https://
|
|
1774
|
+
docs: "https://clipform.io/docs"
|
|
1774
1775
|
};
|
|
1775
1776
|
}
|
|
1776
1777
|
var BUSINESS = {
|
|
@@ -2044,4 +2045,4 @@ export {
|
|
|
2044
2045
|
getSessionContextWithAuth,
|
|
2045
2046
|
getSessionContext
|
|
2046
2047
|
};
|
|
2047
|
-
//# sourceMappingURL=chunk-
|
|
2048
|
+
//# sourceMappingURL=chunk-6G35U7YP.js.map
|