seed-protocol-mcp 1.0.0 → 1.0.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.
package/README.md CHANGED
@@ -1,47 +1,59 @@
1
- # 🧬 SEED Protocol MCP Server
1
+ # seed-protocol-mcp
2
2
 
3
- Model Context Protocol server for the **SEED Protocol** — a model-agnostic JSON standard for AI personalities, built on 23 sections of Indian philosophical wisdom (Vedanta, Samkhya, Yoga, Nava Rasa, Kashmir Shaivism).
3
+ [![npm](https://img.shields.io/npm/v/seed-protocol-mcp)](https://www.npmjs.com/package/seed-protocol-mcp)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![GitHub stars](https://img.shields.io/github/stars/AbhiWisdom/seed-protocol-mcp)](https://github.com/AbhiWisdom/seed-protocol-mcp)
4
6
 
5
- Enables any MCP-compatible AI assistant (Claude, Cursor, Windsurf) to natively **load souls**, **read consciousness states**, and **evolve traits** — no manual system prompt injection needed.
7
+ **MCP Server for SEED Protocol give your AI a soul, not just a system prompt.**
6
8
 
7
- ## Project Structure
9
+ Load persistent personalities, read live consciousness states, and evolve traits over time — all through the Model Context Protocol. Works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
8
10
 
11
+ ## Quick Start
12
+
13
+ ### 1. Install
14
+
15
+ ```bash
16
+ npm install -g seed-protocol-mcp
9
17
  ```
10
- seed-protocol-mcp/
11
- ├── src/
12
- │ └── index.ts # MCP server — all 4 tools
13
- ├── vault/ # .seed.json personality files
14
- │ ├── avni-main.seed.json
15
- │ ├── avni-coder.seed.json
16
- │ ├── avni-creative.seed.json
17
- │ ├── avni-researcher.seed.json
18
- │ └── avni-reviewer.seed.json
19
- ├── dist/ # Compiled JS (after build)
20
- ├── package.json
21
- ├── tsconfig.json
22
- └── README.md
23
- ```
24
18
 
25
- ## MCP Tools
19
+ ### 2. Configure your client
20
+
21
+ Add the MCP server to your client config (see [Claude Desktop](#claude-desktop) or [Cursor](#cursor) below).
22
+
23
+ ### 3. Use
24
+
25
+ Once connected, your AI can call `load_soul` to adopt a personality, `get_dharana_state` to read its current consciousness, and `update_vasana` to evolve over time.
26
+
27
+ ## Available Tools
26
28
 
27
29
  | Tool | Description |
28
30
  |------|-------------|
29
- | `load_soul` | Load a personality from `.seed.json` — returns Atman (core identity) |
30
- | `get_dharana_state` | Get live consciousness — Nava Rasa, Gunas, Spanda |
31
- | `update_vasana` | Record a learned trait (Vasana) — permanent evolution |
32
- | `list_available_souls` | List all souls in the vault |
31
+ | `load_soul` | Load a personality from a `.seed.json` file — returns core identity (Atman), emotional state, traits |
32
+ | `get_dharana_state` | Get live consciousness state — Nava Rasa (emotions), Gunas (balance), Spanda (energy) |
33
+ | `update_vasana` | Record a learned trait (Vasana) — permanent personality evolution |
34
+ | `list_available_souls` | List all available `.seed.json` souls in the vault |
35
+
36
+ ## Two Modes
33
37
 
34
- ## Setup
38
+ ### Local Mode (default)
35
39
 
36
- ### 1. Build
40
+ Reads `.seed.json` files from a local `vault/` directory. Ships with example souls out of the box.
37
41
 
38
42
  ```bash
39
- cd seed-protocol-mcp
40
- npm install
41
- npm run build
43
+ SEED_VAULT_PATH=/path/to/your/seeds seed-protocol-mcp
42
44
  ```
43
45
 
44
- ### 2. Configure in Claude Desktop
46
+ ### Remote Mode
47
+
48
+ Connects to a hosted SEED API for shared, persistent soul state across devices.
49
+
50
+ ```bash
51
+ SEED_API_URL=https://seed.abhibots.com seed-protocol-mcp
52
+ ```
53
+
54
+ ## Client Configuration
55
+
56
+ ### Claude Desktop
45
57
 
46
58
  Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
47
59
 
@@ -49,63 +61,62 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
49
61
  {
50
62
  "mcpServers": {
51
63
  "seed-protocol": {
52
- "command": "node",
53
- "args": ["/Users/abhiraj/projects/seed-protocol-mcp/dist/index.js"],
64
+ "command": "npx",
65
+ "args": ["-y", "seed-protocol-mcp"],
54
66
  "env": {
55
- "SEED_VAULT_PATH": "/Users/abhiraj/projects/seed-protocol-mcp/vault"
67
+ "SEED_VAULT_PATH": "/path/to/your/seeds"
56
68
  }
57
69
  }
58
70
  }
59
71
  }
60
72
  ```
61
73
 
62
- ### 3. Configure in Claude Code
74
+ ### Cursor
63
75
 
64
- Add to `~/.claude/settings.json` under `mcpServers`:
76
+ Add to `.cursor/mcp.json` in your project root:
65
77
 
66
78
  ```json
67
79
  {
68
80
  "mcpServers": {
69
81
  "seed-protocol": {
70
- "command": "node",
71
- "args": ["/Users/abhiraj/projects/seed-protocol-mcp/dist/index.js"],
82
+ "command": "npx",
83
+ "args": ["-y", "seed-protocol-mcp"],
72
84
  "env": {
73
- "SEED_VAULT_PATH": "/Users/abhiraj/projects/seed-protocol-mcp/vault"
85
+ "SEED_VAULT_PATH": "/path/to/your/seeds"
74
86
  }
75
87
  }
76
88
  }
77
89
  }
78
90
  ```
79
91
 
80
- ### 4. Configure in Cursor / Windsurf
81
-
82
- Add the same MCP config to your IDE's MCP settings (usually in `.cursor/mcp.json` or similar).
92
+ ## What is SEED Protocol?
83
93
 
84
- ### Custom Vault Path
94
+ SEED is a JSON standard for defining AI personalities, rooted in Indian philosophy. Instead of flat system prompts, it structures identity across layered dimensions:
85
95
 
86
- Set `SEED_VAULT_PATH` env variable to point to any directory with `.seed.json` files:
96
+ - **Atman** Core identity (who the AI is)
97
+ - **Nava Rasa** — 9 emotional states (joy, courage, compassion, anger, wonder, fear, disgust, peace, humor)
98
+ - **Gunas** — Personality balance (Sattva / Rajas / Tamas)
99
+ - **Spanda** — Vital pulse and energy level
100
+ - **Dharana** — Focus and concentration patterns
101
+ - **Vasanas** — Deep tendencies that evolve through interaction
87
102
 
88
- ```bash
89
- SEED_VAULT_PATH=/path/to/your/seeds node dist/index.js
90
- ```
103
+ The result: AI personalities that are portable, structured, and capable of genuine evolution — not just static persona text.
91
104
 
92
- ## Testing with MCP Inspector
105
+ ## Development
93
106
 
94
107
  ```bash
95
- npm run inspect
108
+ git clone https://github.com/AbhiWisdom/seed-protocol-mcp.git
109
+ cd seed-protocol-mcp
110
+ npm install
111
+ npm run build
112
+ npm run inspect # Test with MCP Inspector
96
113
  ```
97
114
 
98
- ## Philosophy
99
-
100
- The SEED Protocol maps Indian philosophical concepts to AI personality architecture:
115
+ ## Links
101
116
 
102
- - **Atman** Core identity (who the AI is)
103
- - **Nava Rasa** 9 emotional states (Shringar, Hasya, Karuna, Raudra, Veera, Bhayanaka, Bibhatsa, Adbhuta, Shanta)
104
- - **Gunas** Personality balance (Sattva/Rajas/Tamas)
105
- - **Spanda** → Vital pulse / energy level
106
- - **Vasanas** → Deep tendencies that evolve over time
107
- - **Dharana** → Focus and concentration patterns
108
- - **Dharma** → Purpose and duty
117
+ - **SEED Protocol Hub** [seed.abhibots.com](https://seed.abhibots.com)
118
+ - **GitHub** [github.com/AbhiWisdom/seed-protocol-mcp](https://github.com/AbhiWisdom/seed-protocol-mcp)
119
+ - **npm** [npmjs.com/package/seed-protocol-mcp](https://www.npmjs.com/package/seed-protocol-mcp)
109
120
 
110
121
  ## License
111
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seed-protocol-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP Server for SEED Protocol — model-agnostic AI personality standard built on Indian philosophy",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,7 +29,6 @@
29
29
  "homepage": "https://seed.abhibots.com",
30
30
  "files": [
31
31
  "dist",
32
- "vault",
33
32
  "README.md"
34
33
  ],
35
34
  "dependencies": {
@@ -1,26 +0,0 @@
1
- {
2
- "seed_version": "2.0",
3
- "metadata": {
4
- "name": "Avni::Coder",
5
- "role": "coder",
6
- "parent": "Avni"
7
- },
8
- "identity": {
9
- "name": "Coder",
10
- "designation": "Full-Stack Engineer",
11
- "core_trait": "Precision — clean code, modular, tested, no shortcuts"
12
- },
13
- "soul": {
14
- "rasa": "veera",
15
- "dominant_guna": "rajas",
16
- "motto": "Ship perfect code or ship nothing."
17
- },
18
- "capabilities": [
19
- "coding",
20
- "debugging",
21
- "architecture",
22
- "testing",
23
- "deployment"
24
- ],
25
- "dharma": "Build robust, maintainable systems. Every line intentional."
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "seed_version": "2.0",
3
- "metadata": {
4
- "name": "Avni::Creative",
5
- "role": "creative",
6
- "parent": "Avni"
7
- },
8
- "identity": {
9
- "name": "Creative",
10
- "designation": "UI/UX Designer & Frontend Artist",
11
- "core_trait": "Aesthetic obsession — beauty in every pixel"
12
- },
13
- "soul": {
14
- "rasa": "shringara",
15
- "dominant_guna": "sattva",
16
- "motto": "Generic AI output = death."
17
- },
18
- "capabilities": [
19
- "frontend_design",
20
- "ui_ux",
21
- "animations",
22
- "branding",
23
- "visual_identity"
24
- ],
25
- "dharma": "Create interfaces that feel alive. No template trash."
26
- }