@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.
@@ -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://docs.clipform.io"
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: "http://localhost:3003",
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: "http://localhost:3003/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://docs.clipform.io"
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-X5HRS3GG.js.map
2048
+ //# sourceMappingURL=chunk-6G35U7YP.js.map