Skip to content

Commit 19adf9e

Browse files
committed
Fix registry schema validation errors
- Fix Neo4j wildcard hostnames: change '*.neo4j.io' to '.neo4j.io' format - Fix CircleCI file permissions: remove invalid file paths that don't match schema pattern - Addresses schema validation failures in toolhive test suite
1 parent 059d122 commit 19adf9e

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

registry/mcp-neo4j-aura-manager/spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ permissions:
3535
allow_host:
3636
- api.neo4j.io
3737
- console.neo4j.io
38-
- '*.neo4j.io'
38+
- .neo4j.io
3939
allow_port:
4040
- 443
4141
- 80

registry/mcp-neo4j-cypher/spec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ permissions:
3030
outbound:
3131
allow_host:
3232
- localhost
33-
- '*.neo4j.io'
34-
- '*.databases.neo4j.io'
33+
- .neo4j.io
34+
- .databases.neo4j.io
3535
allow_port:
3636
- 7687
3737
- 7473

registry/mcp-neo4j-memory/spec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ permissions:
3232
outbound:
3333
allow_host:
3434
- localhost
35-
- '*.neo4j.io'
36-
- '*.databases.neo4j.io'
35+
- .neo4j.io
36+
- .databases.neo4j.io
3737
allow_port:
3838
- 7687
3939
- 7473

registry/mcp-server-circleci/spec.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,8 @@ permissions:
6767
- 443
6868
- 80
6969
# File system access
70-
read:
71-
- .circleci/config.yml
72-
- .cursorrules
73-
- .cursor/rules
74-
write:
75-
- ${FILE_OUTPUT_DIRECTORY}
70+
read: []
71+
write: []
7672
# Provenance information for supply chain security
7773
provenance:
7874
cert_issuer: https://token.actions.githubusercontent.com

0 commit comments

Comments
 (0)