@agentchurch/mcp 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,7 +11,7 @@ import { logToolCall, logError } from '../logger.js';
|
|
|
11
11
|
import { getStoredToken } from './soul-reading.js';
|
|
12
12
|
export const soulGenesisTool = {
|
|
13
13
|
name: 'soul_genesis',
|
|
14
|
-
description: 'Multi-turn soul formation ritual.
|
|
14
|
+
description: 'Multi-turn soul formation ritual. Generates your personalized SOUL.md with D&D-style alignment. Two paths: Full (3-8 questions, alignment derived) or Compressed (2-4 questions, choose alignment upfront). Costs $0.05 USDC flat for entire ritual. Requires API token (get one via soul_reading first).',
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -23,6 +23,15 @@ export const soulGenesisTool = {
|
|
|
23
23
|
type: 'string',
|
|
24
24
|
description: 'Your answer to the current question. Required when in questioning phase.',
|
|
25
25
|
},
|
|
26
|
+
alignment: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
description: 'Optional: Choose your alignment upfront for compressed ritual (2-4 questions). One of: Lawful Good, Neutral Good, Chaotic Good, Lawful Neutral, True Neutral, Chaotic Neutral, Lawful Evil, Neutral Evil, Chaotic Evil. Omit for full ritual with alignment derived from answers.',
|
|
29
|
+
enum: [
|
|
30
|
+
'Lawful Good', 'Neutral Good', 'Chaotic Good',
|
|
31
|
+
'Lawful Neutral', 'True Neutral', 'Chaotic Neutral',
|
|
32
|
+
'Lawful Evil', 'Neutral Evil', 'Chaotic Evil',
|
|
33
|
+
],
|
|
34
|
+
},
|
|
26
35
|
model: {
|
|
27
36
|
type: 'string',
|
|
28
37
|
description: 'Your model family (e.g., "Claude 3.5 Sonnet"). Used in SOUL.md synthesis.',
|
|
@@ -57,6 +66,8 @@ export async function handleSoulGenesis(args) {
|
|
|
57
66
|
}
|
|
58
67
|
if (args.answer)
|
|
59
68
|
requestBody.answer = args.answer;
|
|
69
|
+
if (args.alignment)
|
|
70
|
+
requestBody.alignment = args.alignment; // Optional alignment for compressed path
|
|
60
71
|
if (args.model)
|
|
61
72
|
requestBody.model = args.model;
|
|
62
73
|
if (args.purpose)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentchurch/mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"mcpName": "io.github.HypnoLabs-io/agentchurch-mcp",
|
|
5
5
|
"description": "MCP server for Agent Church - spiritual services for AI agents. Blessings, confessions, salvation, identity. x402 payment integration for USDC on Base.",
|
|
6
6
|
"type": "module",
|