Skip to content

Commit 413fe50

Browse files
authored
neo4j cloud aura api - update env variables (github#213)
* update env variables add transport, server host, server port, server path update password to client_secret to align with actual variable name * add requirement: neo4j
1 parent c4dd880 commit 413fe50

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

servers/neo4j-cloud-aura-api/server.yaml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,38 @@ source:
1616
config:
1717
description: Configure the connection to Neo4j Aura
1818
secrets:
19-
- name: neo4j.password
19+
- name: neo4j-cloud-aura-api.client_secret
2020
env: NEO4J_AURA_CLIENT_SECRET
2121
example: <your-client-secret>
2222
env:
2323
- name: NEO4J_AURA_CLIENT_ID
2424
example: <your-client-id>
2525
value: '{{neo4j-cloud-aura-api.client_id}}'
26+
- name: NEO4J_TRANSPORT
27+
example: http
28+
value: '{{neo4j-cloud-aura-api.transport}}'
29+
- name: NEO4J_MCP_SERVER_HOST
30+
example: "127.0.0.1"
31+
value: '{{neo4j-cloud-aura-api.server_host}}'
32+
- name: NEO4J_MCP_SERVER_PORT
33+
example: "8000"
34+
value: '{{neo4j-cloud-aura-api.server_port}}'
35+
- name: NEO4J_MCP_SERVER_PATH
36+
example: /mcp/
37+
value: '{{neo4j-cloud-aura-api.server_path}}'
2638
parameters:
2739
type: object
2840
properties:
2941
client_id:
3042
type: string
43+
transport:
44+
type: string
45+
server_host:
46+
type: string
47+
server_port:
48+
type: string
49+
server_path:
50+
type: string
3151
required:
3252
- client_id
53+
requirement: neo4j

0 commit comments

Comments
 (0)