forked from dvvolkovv/MCP_Human_design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp-server.js
More file actions
363 lines (314 loc) Β· 10.5 KB
/
http-server.js
File metadata and controls
363 lines (314 loc) Β· 10.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#!/usr/bin/env node
/**
* HTTP Wrapper for Human Design MCP Server
* With Bearer Token Authentication
*/
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
import express from 'express';
import { spawn } from 'child_process';
import readline from 'readline';
// Load Swiss Ephemeris version
const { calculateHumanDesign } = require('./src/calculations-cjs.cjs');
const { transformToV1, transformToV2 } = require('./src/response-transformers.cjs');
console.log('β
Swiss Ephemeris version loaded');
console.log('β
V1/V2 Response Transformers loaded');
const app = express();
const PORT = process.env.PORT || 3000;
const API_KEY = process.env.API_KEY || 'your-secret-api-key-change-this';
const GOOGLE_MAPS_API_KEY = process.env.GOOGLE_MAPS_API_KEY;
// Middleware
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
// Auth middleware
const authMiddleware = (req, res, next) => {
const authHeader = req.headers.authorization;
if (!authHeader || !authHeader.startsWith('Bearer ')) {
return res.status(401).json({
success: false,
error: 'Unauthorized - Missing or invalid Authorization header',
message: 'Please provide: Authorization: Bearer YOUR_API_KEY'
});
}
const token = authHeader.substring(7); // Remove 'Bearer ' prefix
if (token !== API_KEY) {
return res.status(403).json({
success: false,
error: 'Forbidden - Invalid API key'
});
}
next();
};
// Public health check (no auth required)
app.get('/health', (req, res) => {
res.json({
status: 'ok',
service: 'human-design-mcp-server',
version: '1.1.0-hybrid-location',
timestamp: new Date().toISOString(),
auth: 'enabled',
features: {
staticDatabase: true,
googleMapsIntegration: !!GOOGLE_MAPS_API_KEY
}
});
});
// Protected: Main endpoint
app.post('/api/human-design', authMiddleware, async (req, res) => {
try {
const { birthDate, birthTime, birthLocation, latitude, longitude } = req.body;
// Validation
if (!birthDate || !birthTime || !birthLocation) {
return res.status(400).json({
success: false,
error: 'birthDate, birthTime, and birthLocation are required',
});
}
// Calculate using Swiss Ephemeris
const result = await calculateHumanDesign({
birthDate,
birthTime,
birthLocation,
latitude,
longitude,
googleMapsApiKey: GOOGLE_MAPS_API_KEY,
});
res.json({
success: true,
data: result,
});
} catch (error) {
console.error('Error calculating Human Design:', error);
res.status(500).json({
success: false,
error: error.message,
});
}
});
// =============================================================================
// V1 Endpoint - Lean Enterprise API
// =============================================================================
app.post('/api/v1/data', authMiddleware, async (req, res) => {
try {
const { birthDate, birthTime, birthLocation, latitude, longitude } = req.body;
if (!birthDate || !birthTime || !birthLocation) {
return res.status(400).json({
success: false,
error: 'birthDate, birthTime, and birthLocation are required',
});
}
const fullResult = await calculateHumanDesign({
birthDate,
birthTime,
birthLocation,
latitude,
longitude,
googleMapsApiKey: GOOGLE_MAPS_API_KEY,
});
// Transform to V1 lean format
const v1Result = transformToV1(fullResult);
res.json({
success: true,
meta: {
version: '1.0.0',
timestamp: new Date().toISOString(),
endpoint: 'v1'
},
data: v1Result,
});
} catch (error) {
console.error('Error calculating Human Design (V1):', error);
res.status(500).json({ success: false, error: error.message });
}
});
// =============================================================================
// V1 Endpoint with Tooltips - Lean Enterprise API + Full Tooltips
// =============================================================================
app.post('/api/v1/data-tooltip', authMiddleware, async (req, res) => {
try {
const { birthDate, birthTime, birthLocation, latitude, longitude } = req.body;
if (!birthDate || !birthTime || !birthLocation) {
return res.status(400).json({
success: false,
error: 'birthDate, birthTime, and birthLocation are required',
});
}
const fullResult = await calculateHumanDesign({
birthDate,
birthTime,
birthLocation,
latitude,
longitude,
googleMapsApiKey: GOOGLE_MAPS_API_KEY,
});
// Transform to V1 with full tooltips
const v1Result = transformToV1(fullResult, true);
res.json({
success: true,
meta: {
version: '1.0.0',
timestamp: new Date().toISOString(),
endpoint: 'v1-tooltip'
},
data: v1Result,
});
} catch (error) {
console.error('Error calculating Human Design (V1-tooltip):', error);
res.status(500).json({ success: false, error: error.message });
}
});
// =============================================================================
// V2 Endpoint - Full Featured API (empty tooltips by default)
// =============================================================================
app.post('/api/v2/data', authMiddleware, async (req, res) => {
try {
const { birthDate, birthTime, birthLocation, latitude, longitude } = req.body;
if (!birthDate || !birthTime || !birthLocation) {
return res.status(400).json({
success: false,
error: 'birthDate, birthTime, and birthLocation are required',
});
}
const fullResult = await calculateHumanDesign({
birthDate,
birthTime,
birthLocation,
latitude,
longitude,
googleMapsApiKey: GOOGLE_MAPS_API_KEY,
});
// Transform to V2 format (empty tooltips)
const v2Result = transformToV2(fullResult, false);
res.json({
success: true,
meta: {
version: '2.0.0',
timestamp: new Date().toISOString(),
endpoint: 'v2'
},
data: v2Result,
});
} catch (error) {
console.error('Error calculating Human Design (V2):', error);
res.status(500).json({ success: false, error: error.message });
}
});
// =============================================================================
// V2 Endpoint with Tooltips - Full Featured API + Full Tooltips
// =============================================================================
app.post('/api/v2/data-tooltip', authMiddleware, async (req, res) => {
try {
const { birthDate, birthTime, birthLocation, latitude, longitude } = req.body;
if (!birthDate || !birthTime || !birthLocation) {
return res.status(400).json({
success: false,
error: 'birthDate, birthTime, and birthLocation are required',
});
}
const fullResult = await calculateHumanDesign({
birthDate,
birthTime,
birthLocation,
latitude,
longitude,
googleMapsApiKey: GOOGLE_MAPS_API_KEY,
});
// Transform to V2 with full tooltips
const v2Result = transformToV2(fullResult, true);
res.json({
success: true,
meta: {
version: '2.0.0',
timestamp: new Date().toISOString(),
endpoint: 'v2-tooltip'
},
data: v2Result,
});
} catch (error) {
console.error('Error calculating Human Design (V2-tooltip):', error);
res.status(500).json({ success: false, error: error.message });
}
});
app.post('/api/mcp/calculate', authMiddleware, async (req, res) => {
try {
const mcpServer = spawn('node', ['index-with-swiss.js']);
const rl = readline.createInterface({
input: mcpServer.stdout,
output: mcpServer.stdin,
});
const request = {
jsonrpc: '2.0',
id: 1,
method: 'tools/call',
params: {
name: 'calculate_human_design',
arguments: req.body,
},
};
mcpServer.stdin.write(JSON.stringify(request) + '\n');
rl.once('line', (line) => {
try {
const response = JSON.parse(line);
if (response.result) {
res.json({ success: true, data: response.result });
} else if (response.error) {
res.status(500).json({ success: false, error: response.error });
}
} catch (parseError) {
res.status(500).json({ success: false, error: 'Failed to parse response' });
}
mcpServer.kill();
});
setTimeout(() => {
mcpServer.kill();
res.status(500).json({ success: false, error: 'Request timeout' });
}, 10000);
} catch (error) {
console.error('Error in MCP call:', error);
res.status(500).json({ success: false, error: error.message });
}
});
// Root endpoint
app.get('/', (req, res) => {
res.json({
service: 'Human Design MCP Server',
version: '2.1.0',
auth: 'Bearer token required',
features: {
staticDatabase: 'Major cities worldwide',
googleMapsIntegration: GOOGLE_MAPS_API_KEY ? 'Enabled (fallback for unknown locations)' : 'Disabled',
asteroids: 'Chiron, Ceres, Pallas, Juno, Vesta',
chartAngles: 'AC, MC, IC, DC'
},
endpoints: {
health: '/health (public)',
v1: '/api/v1/data - Lean enterprise (empty tooltips)',
v1Tooltip: '/api/v1/data-tooltip - Lean enterprise (full tooltips)',
v2: '/api/v2/data - Full featured (empty tooltips)',
v2Tooltip: '/api/v2/data-tooltip - Full featured (full tooltips)',
legacy: '/api/human-design - Original format',
mcp: '/api/mcp/calculate',
},
documentation: 'https://github.com/sphinxcode/humandesignmcp',
});
});
// Start server
app.listen(PORT, '0.0.0.0', () => {
console.log(`π Human Design MCP Server running on port ${PORT}`);
console.log(`π Auth: Bearer token enabled`);
console.log(`π Health: http://0.0.0.0:${PORT}/health`);
console.log(`π API: http://0.0.0.0:${PORT}/api/human-design`);
console.log(`π Location: Static DB + ${GOOGLE_MAPS_API_KEY ? 'Google Maps (enabled)' : 'Manual coords only'}`);
if (API_KEY === 'your-secret-api-key-change-this') {
console.warn('β οΈ WARNING: Using default API key! Set API_KEY environment variable.');
}
if (!GOOGLE_MAPS_API_KEY) {
console.warn('β οΈ Google Maps API not configured. Only static database cities supported.');
console.warn(' Set GOOGLE_MAPS_API_KEY environment variable to enable worldwide location lookup.');
}
});
// Graceful shutdown
process.on('SIGTERM', () => {
console.log('SIGTERM received, shutting down gracefully');
process.exit(0);
});