Skip to content

Commit ffbd651

Browse files
authored
neo4j-cypher - add new params for v0.4.0 (github#231)
* add new params for v0.4.0 * change example values to strings for read timeout and response token limit
1 parent cebfbb6 commit ffbd651

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

servers/neo4j-cypher/server.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,19 @@ config:
4444
- name: NEO4J_MCP_SERVER_PATH
4545
example: /mcp/
4646
value: '{{neo4j-cypher.server_path}}'
47+
- name: NEO4J_MCP_SERVER_ALLOW_ORIGINS
48+
example: "example.com,www.example.com"
49+
value: '{{neo4j-cypher.server_allow_origins}}'
50+
- name: NEO4J_MCP_SERVER_ALLOWED_HOSTS
51+
example: "localhost,127.0.0.1"
52+
value: '{{neo4j-cypher.server_allowed_hosts}}'
53+
- name: NEO4J_READ_TIMEOUT
54+
example: "30"
55+
value: '{{neo4j-cypher.read_timeout}}'
56+
- name: NEO4J_RESPONSE_TOKEN_LIMIT
57+
example: "10000"
58+
value: '{{neo4j-cypher.response_token_limit}}'
59+
4760
parameters:
4861
type: object
4962
properties:
@@ -53,6 +66,10 @@ config:
5366
type: string
5467
database:
5568
type: string
69+
read_timeout:
70+
type: string
71+
response_token_limit:
72+
type: string
5673
namespace:
5774
type: string
5875
transport:
@@ -63,6 +80,10 @@ config:
6380
type: string
6481
server_path:
6582
type: string
83+
server_allow_origins:
84+
type: string
85+
server_allowed_hosts:
86+
type: string
6687
required:
6788
- url
6889
- username

0 commit comments

Comments
 (0)