aamanlamba commited on
Commit
368f5eb
·
verified ·
1 Parent(s): ee37a64

Add 3 new MCP server integrations: Local HERMES, Astro.com, Gemini AI

Browse files
Files changed (1) hide show
  1. .mcp_config.json +32 -8
.mcp_config.json CHANGED
@@ -1,29 +1,53 @@
1
  {
2
  "mcpServers": {
3
- "hermes-astrology": {
4
  "command": "python",
5
- "args": ["-m", "mcp_server"],
6
  "env": {
7
  "PYTHONPATH": "."
8
- }
 
9
  },
10
  "hermes-modal": {
11
  "command": "modal",
12
  "args": ["serve", "mcp_server.py"],
13
- "env": {}
 
14
  },
15
  "astroseek": {
16
  "command": "python",
17
  "args": ["-m", "astroseek_mcp"],
18
  "env": {
19
  "PYTHONPATH": "."
20
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  }
22
  },
23
  "settings": {
24
- "default_server": "hermes-modal",
25
- "fallback_to_local": true,
26
  "cache_ephemeris": true,
27
- "astroseek_rate_limit": 1.0
 
 
 
 
28
  }
29
  }
 
1
  {
2
  "mcpServers": {
3
+ "hermes-local": {
4
  "command": "python",
5
+ "args": ["-m", "hermes_local_mcp"],
6
  "env": {
7
  "PYTHONPATH": "."
8
+ },
9
+ "description": "Local HERMES MCP server with core features (dignities, profections, lots)"
10
  },
11
  "hermes-modal": {
12
  "command": "modal",
13
  "args": ["serve", "mcp_server.py"],
14
+ "env": {},
15
+ "description": "Modal serverless MCP server for advanced time-lord calculations"
16
  },
17
  "astroseek": {
18
  "command": "python",
19
  "args": ["-m", "astroseek_mcp"],
20
  "env": {
21
  "PYTHONPATH": "."
22
+ },
23
+ "description": "Astroseek.com chart integration via web scraping"
24
+ },
25
+ "astrodienst": {
26
+ "command": "python",
27
+ "args": ["-m", "astrodienst_mcp"],
28
+ "env": {
29
+ "PYTHONPATH": "."
30
+ },
31
+ "description": "Astro.com classical Hellenistic chart generator"
32
+ },
33
+ "gemini": {
34
+ "command": "python",
35
+ "args": ["-m", "gemini_mcp"],
36
+ "env": {
37
+ "PYTHONPATH": ".",
38
+ "GOOGLE_API_KEY": "${GOOGLE_API_KEY}"
39
+ },
40
+ "description": "Google Gemini AI for natural language astrology conversations"
41
  }
42
  },
43
  "settings": {
44
+ "default_server": "hermes-local",
45
+ "fallback_chain": ["hermes-modal", "hermes-local"],
46
  "cache_ephemeris": true,
47
+ "rate_limits": {
48
+ "astroseek": 1.0,
49
+ "astrodienst": 2.0,
50
+ "gemini": 0.5
51
+ }
52
  }
53
  }