diff --git a/dgraph/v25-preview.mdx b/dgraph/v25-preview.mdx index a9453ed1..41005c07 100644 --- a/dgraph/v25-preview.mdx +++ b/dgraph/v25-preview.mdx @@ -155,30 +155,6 @@ defer client.Close() // use the client ``` -### Connect to Hypermode Graph - -You can use either `Open` or `NewClient` to connect to a Hypermode Graph. -Hypermode automatically handles load balancing in multi-node clusters. - -Using `Open` with a connection string: - -```go -client, err := dgo.Open("dgraph://.hypermode.host?sslmode=verify-ca&bearertoken=") -// handle error -defer client.Close() -``` - -Using `NewClient`: - -```go -client, err := dgo.NewClient(".hypermode.host:443", - dgo.WithBearerToken(""), - dgo.WithSystemCertPool(), -) -// handle error -defer client.Close() -``` - ### Set schema To set the schema, use the `SetSchema` function. @@ -372,27 +348,8 @@ assistants: To add the MCP server to your coding assistant, add the following to your configuration file: -When using Hypermode Graphs, the MCP configuration is available on the graph -details screen in the console. - -```json Hypermode -{ - "mcpServers": { - "hypermode-graph": { - "command": "npx", - "args": [ - "mcp-remote", - "https://.hypermode.host/mcp/sse", - "--header", - "Authorization: Bearer " - ] - } - } -} -``` - ```json local { "mcpServers": {