-
Notifications
You must be signed in to change notification settings - Fork 7
Replace grid.lightspark.com with docs.lightspark.com #513
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ To send and receive using UMA with your own domain (e.g., `$alice@yourdomain.com | |
| 2. Proxy inbound UMA requests to {topLevelProductName} | ||
| 3. Define supported currencies and, if you are a regulated institution, the counterparty information you require | ||
|
|
||
| If you do not configure an UMA domain, Grid will use the default domain `grid.lightspark.com`. | ||
| If you do not configure an UMA domain, Grid will use the default domain `docs.lightspark.com`. | ||
|
|
||
| <Note>You can find more information about the UMA protocol and end user experience at [https://uma.me](https://uma.me).</Note> | ||
|
|
||
|
|
@@ -30,9 +30,9 @@ Set up proxying so UMA‑related requests are forwarded to your assigned `proxyU | |
|
|
||
| - UMA domain determines the address format (e.g., `$alice@yourdomain.com`) | ||
| - Proxy the following paths to `{proxyUmaSubdomain}`: | ||
| - `https://<umaDomain>/.well-known/lnurlp/*` -> `https://<proxyUmaSubdomain>.grid.lightspark.com/.well-known/lnurlp/*` | ||
| - `https://<umaDomain>/.well-known/lnurlpubkey` -> `https://<proxyUmaSubdomain>.grid.lightspark.com/.well-known/lnurlpubkey` | ||
| - `https://<umaDomain>/.well-known/uma-configuration` -> `https://<proxyUmaSubdomain>.grid.lightspark.com/.well-known/uma-configuration` | ||
| - `https://<umaDomain>/.well-known/lnurlp/*` -> `https://<proxyUmaSubdomain>.docs.lightspark.com/.well-known/lnurlp/*` | ||
| - `https://<umaDomain>/.well-known/lnurlpubkey` -> `https://<proxyUmaSubdomain>.docs.lightspark.com/.well-known/lnurlpubkey` | ||
| - `https://<umaDomain>/.well-known/uma-configuration` -> `https://<proxyUmaSubdomain>.docs.lightspark.com/.well-known/uma-configuration` | ||
|
Comment on lines
+33
to
+35
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The proxy target subdomains ( Prompt To Fix With AIThis is a comment left during a code review.
Path: mintlify/global-p2p/getting-started/platform-configuration.mdx
Line: 33-35
Comment:
**UMA proxy target is a live API endpoint, not a docs URL**
The proxy target subdomains (`<proxyUmaSubdomain>.grid.lightspark.com`) are production API infrastructure that customers must route UMA protocol traffic to — they're not documentation links. Changing these to `<proxyUmaSubdomain>.docs.lightspark.com` is correct only if those subdomains are actually served from `docs.lightspark.com`. Any customer who has already configured their reverse proxy rules based on the old documentation will start dropping UMA traffic with DNS/connection errors. The same pattern appears in `mintlify/snippets/platform-configuration-uma.mdx` lines 124–126.
How can I resolve this? If you propose a fix, please make it concise. |
||
|
|
||
| Additionally, configure: | ||
| - Supported currencies (min/max, enabled transaction types) | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -110,7 +110,7 @@ Start in the sandbox environment to experiment safely. The Skill is great at gen | |
| Grid provides a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that lets AI agents search Grid's SDK documentation **and** execute Grid API operations directly. Your agentic workflows get full context of the Grid API during implementation and can run quotes, transfers, customer onboarding, and other operations end-to-end. | ||
|
|
||
| ```text | ||
| https://mcp.grid.lightspark.com/ | ||
| https://mcp.docs.lightspark.com/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Prompt To Fix With AIThis is a comment left during a code review.
Path: mintlify/platform-overview/building-with-ai.mdx
Line: 113
Comment:
**MCP server URL is a live API endpoint**
`mcp.grid.lightspark.com` is an active API endpoint that customers integrate with directly (it appears five times in this file across Claude Desktop, Cursor/Windsurf, and the generic HTTP tab). Changing it to `mcp.docs.lightspark.com` will immediately break any customer who copy-pastes these config blocks, unless the MCP server is actually being served from the new subdomain at the same time this documentation goes live. Is there a corresponding infrastructure deployment accompanying this change?
How can I resolve this? If you propose a fix, please make it concise. |
||
| ``` | ||
|
|
||
| The MCP server exposes two tools: | ||
|
|
@@ -137,7 +137,7 @@ The MCP server requires Grid API credentials. In the [Grid dashboard](https://ap | |
| "mcpServers": { | ||
| "grid_mcp": { | ||
| "type": "http", | ||
| "url": "https://mcp.grid.lightspark.com/", | ||
| "url": "https://mcp.docs.lightspark.com/", | ||
| "headers": { | ||
| "x-grid-client-id": "{client id}", | ||
| "x-grid-client-secret": "{client secret}" | ||
|
|
@@ -159,7 +159,7 @@ The MCP server requires Grid API credentials. In the [Grid dashboard](https://ap | |
| "args": [ | ||
| "-y", | ||
| "mcp-remote", | ||
| "https://mcp.grid.lightspark.com/", | ||
| "https://mcp.docs.lightspark.com/", | ||
| "--header", | ||
| "x-grid-client-id: {client id}", | ||
| "--header", | ||
|
|
@@ -180,7 +180,7 @@ The MCP server requires Grid API credentials. In the [Grid dashboard](https://ap | |
| { | ||
| "mcpServers": { | ||
| "grid_mcp": { | ||
| "url": "https://mcp.grid.lightspark.com/", | ||
| "url": "https://mcp.docs.lightspark.com/", | ||
| "headers": { | ||
| "x-grid-client-id": "{client id}", | ||
| "x-grid-client-secret": "{client secret}" | ||
|
|
@@ -194,7 +194,7 @@ The MCP server requires Grid API credentials. In the [Grid dashboard](https://ap | |
| <Tab title="ChatGPT and others"> | ||
| Any client that supports MCP's streamable HTTP transport (ChatGPT, Windsurf, Zed, Cline, and others) can connect using the same URL and headers: | ||
|
|
||
| - **URL:** `https://mcp.grid.lightspark.com/` | ||
| - **URL:** `https://mcp.docs.lightspark.com/` | ||
| - **Headers:** `x-grid-client-id: {client id}` and `x-grid-client-secret: {client secret}` | ||
|
|
||
| For clients that don't yet support HTTP-transport MCP servers natively, use [`mcp-remote`](https://www.npmjs.com/package/mcp-remote) as a bridge — see the Claude desktop app tab for an example. | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default UMA domain was changed from
grid.lightspark.comtodocs.lightspark.com. This domain appears in real UMA payment addresses (e.g.,$alice@docs.lightspark.com) for any customer who hasn't configured a custom domain. If the underlying UMA protocol service infrastructure (which handles.well-known/lnurlp/*,.well-known/lnurlpubkey, etc.) is not also hosted atdocs.lightspark.com, any default-domain UMA payments would fail at address resolution. Can you confirm the service layer is being co-migrated, not just the documentation site URL?Prompt To Fix With AI