elmerzole commited on
Commit
77c0568
·
verified ·
1 Parent(s): bb9fe7e

Rename servers.json to config.json

Browse files
Files changed (2) hide show
  1. config.json +23 -0
  2. servers.json +0 -9
config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "mcpProxy": {
3
+ "baseURL": "https://elmerzole-mcp-proxy.hf.space",
4
+ "addr": ":7860",
5
+ "name": "MCP Proxy",
6
+ "version": "1.0.0",
7
+ "type": "streamable-http",
8
+ "options": {
9
+ "authTokens": ["${API_ACCESS_TOKEN}"]
10
+ }
11
+ },
12
+ "mcpServers": {
13
+ "neo4j": {
14
+ "command": "uvx",
15
+ "args": ["mcp-neo4j-memory@0.4.2"],
16
+ "env": {
17
+ "NEO4J_URL": "${NEO4J_URL}",
18
+ "NEO4J_USERNAME": "${NEO4J_USERNAME}",
19
+ "NEO4J_PASSWORD": "${NEO4J_PASSWORD}"
20
+ }
21
+ }
22
+ }
23
+ }
servers.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "mcpServers": {
3
- "neo4j": {
4
- "command": "uvx",
5
- "args": [ "mcp-neo4j-memory@0.4.2" ],
6
- "transportType": "stdio"
7
- }
8
- }
9
- }