@dollhousemcp/mcp-server 1.6.11 → 1.7.0

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.
@@ -0,0 +1,298 @@
1
+ # DollhouseMCP
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@dollhousemcp/mcp-server.svg)](https://www.npmjs.com/package/@dollhousemcp/mcp-server)
4
+ [![MCP Compatible](https://img.shields.io/badge/MCP-Compatible-green)](https://modelcontextprotocol.io)
5
+ [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
6
+ [![Core Build & Test](https://github.com/DollhouseMCP/mcp-server/actions/workflows/core-build-test.yml/badge.svg)](https://github.com/DollhouseMCP/mcp-server/actions/workflows/core-build-test.yml)
7
+
8
+ A comprehensive Model Context Protocol (MCP) server that enables dynamic AI persona management with an integrated GitHub-powered collection. DollhouseMCP allows Claude and other compatible AI assistants to activate different behavioral personas while supporting community sharing and monetization.
9
+
10
+ **🌐 Repository**: https://github.com/DollhouseMCP/mcp-server
11
+ **🏪 Collection**: https://github.com/DollhouseMCP/collection
12
+ **📦 NPM Package**: https://www.npmjs.com/package/@dollhousemcp/mcp-server
13
+ **🌍 Website**: https://dollhousemcp.com (planned)
14
+
15
+ ## 🚀 Quick Start
16
+
17
+ ### Choose Your Installation Method
18
+
19
+ <table>
20
+ <tr>
21
+ <th>Method</th>
22
+ <th>Best For</th>
23
+ <th>Pros</th>
24
+ <th>Cons</th>
25
+ </tr>
26
+ <tr>
27
+ <td><strong>Local Install</strong><br>(Recommended)</td>
28
+ <td>Most users, multiple configs, customization</td>
29
+ <td>✅ Multiple setups<br>✅ Easy backup<br>✅ No permissions</td>
30
+ <td>❌ Longer path in config</td>
31
+ </tr>
32
+ <tr>
33
+ <td><strong>npx</strong></td>
34
+ <td>Quick testing, always latest</td>
35
+ <td>✅ No install<br>✅ Always updated</td>
36
+ <td>❌ Slower startup<br>❌ Needs internet</td>
37
+ </tr>
38
+ <tr>
39
+ <td><strong>Global Install</strong></td>
40
+ <td>Single shared instance</td>
41
+ <td>✅ Short command</td>
42
+ <td>❌ Only one version<br>❌ Needs sudo/admin</td>
43
+ </tr>
44
+ </table>
45
+
46
+ ---
47
+
48
+ ### Method 1: Local Installation (Recommended)
49
+
50
+ Create a dedicated folder for your MCP servers and install there:
51
+
52
+ ```bash
53
+ # Create MCP servers directory
54
+ mkdir ~/mcp-servers
55
+ cd ~/mcp-servers
56
+
57
+ # Install DollhouseMCP
58
+ npm install @dollhousemcp/mcp-server
59
+ ```
60
+
61
+ **Configure Claude Desktop:**
62
+
63
+ Add to your config file:
64
+ - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
65
+ - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
66
+ - **Linux**: `~/.config/Claude/claude_desktop_config.json`
67
+
68
+ ```json
69
+ {
70
+ "mcpServers": {
71
+ "dollhousemcp": {
72
+ "command": "node",
73
+ "args": ["/Users/YOUR_USERNAME/mcp-servers/node_modules/@dollhousemcp/mcp-server/dist/index.js"]
74
+ }
75
+ }
76
+ }
77
+ ```
78
+
79
+ 💡 **Pro tip**: Replace `/Users/YOUR_USERNAME` with your actual home directory path.
80
+
81
+ ---
82
+
83
+ ### Method 2: Always Latest with npx
84
+
85
+ No installation needed! Configure Claude Desktop to always use the latest version:
86
+
87
+ ```json
88
+ {
89
+ "mcpServers": {
90
+ "dollhousemcp": {
91
+ "command": "npx",
92
+ "args": ["@dollhousemcp/mcp-server@latest"]
93
+ }
94
+ }
95
+ }
96
+ ```
97
+
98
+ 📝 **Note**: The `@latest` tag ensures you always get the newest version. Remove it to use npm's cached version.
99
+
100
+ ---
101
+
102
+ ### Method 3: Global Installation
103
+
104
+ ```bash
105
+ # Install globally (may require sudo/admin)
106
+ npm install -g @dollhousemcp/mcp-server
107
+ ```
108
+
109
+ **Configure Claude Desktop:**
110
+
111
+ ```json
112
+ {
113
+ "mcpServers": {
114
+ "dollhousemcp": {
115
+ "command": "dollhousemcp"
116
+ }
117
+ }
118
+ }
119
+ ```
120
+
121
+ ⚠️ **Warning**: Only one version system-wide. Consider local installation for more flexibility.
122
+
123
+ ---
124
+
125
+ ### 🎯 Advanced: Multiple Configurations
126
+
127
+ Want separate portfolios for different contexts? Create multiple local installations:
128
+
129
+ ```bash
130
+ # Personal assistant
131
+ mkdir ~/mcp-servers/personal
132
+ cd ~/mcp-servers/personal
133
+ npm install @dollhousemcp/mcp-server
134
+
135
+ # Work assistant
136
+ mkdir ~/mcp-servers/work
137
+ cd ~/mcp-servers/work
138
+ npm install @dollhousemcp/mcp-server
139
+
140
+ # Creative writing
141
+ mkdir ~/mcp-servers/creative
142
+ cd ~/mcp-servers/creative
143
+ npm install @dollhousemcp/mcp-server
144
+ ```
145
+
146
+ **Configure each with its own portfolio:**
147
+
148
+ ```json
149
+ {
150
+ "mcpServers": {
151
+ "dollhouse-personal": {
152
+ "command": "node",
153
+ "args": ["/Users/YOU/mcp-servers/personal/node_modules/@dollhousemcp/mcp-server/dist/index.js"],
154
+ "env": {
155
+ "DOLLHOUSE_PORTFOLIO_DIR": "/Users/YOU/portfolios/personal"
156
+ }
157
+ },
158
+ "dollhouse-work": {
159
+ "command": "node",
160
+ "args": ["/Users/YOU/mcp-servers/work/node_modules/@dollhousemcp/mcp-server/dist/index.js"],
161
+ "env": {
162
+ "DOLLHOUSE_PORTFOLIO_DIR": "/Users/YOU/portfolios/work"
163
+ }
164
+ }
165
+ }
166
+ }
167
+ ```
168
+
169
+ Now you can enable/disable different configurations in Claude Desktop as needed!
170
+
171
+ ---
172
+
173
+ ### ✅ Verify Installation
174
+
175
+ After configuring and restarting Claude Desktop, test with:
176
+
177
+ ```
178
+ list_elements type="personas"
179
+ ```
180
+
181
+ You should see your available personas. If not, check the [Troubleshooting](#troubleshooting) section.
182
+
183
+ ---
184
+
185
+ ### 📁 Default Portfolio Location
186
+
187
+ By default, your elements are stored in:
188
+ - **macOS/Linux**: `~/.dollhouse/portfolio/`
189
+ - **Windows**: `%USERPROFILE%\.dollhouse\portfolio\`
190
+
191
+ Use the `DOLLHOUSE_PORTFOLIO_DIR` environment variable to customize this location.
192
+
193
+ ## 🎯 Getting Started
194
+
195
+ Once installed, try these commands in Claude:
196
+
197
+ ```bash
198
+ # Browse available personas
199
+ list_elements type="personas"
200
+
201
+ # Activate a persona
202
+ activate_element name="creative-writer" type="personas"
203
+
204
+ # Browse the community collection
205
+ browse_collection type="personas"
206
+
207
+ # Search for specific content
208
+ search_collection query="python" type="skills"
209
+ ```
210
+
211
+ > **📘 New User?** Follow our [Roundtrip Workflow Guide](docs/guides/ROUNDTRIP_WORKFLOW_USER_GUIDE.md) for a complete walkthrough of discovering, customizing, and sharing AI elements with the community.
212
+
213
+ ## ✨ Key Features
214
+
215
+ | Feature | Description |
216
+ |---------|-------------|
217
+ | 🎭 **41 MCP Tools** | Complete portfolio element management through chat interface |
218
+ | 🏪 **GitHub Collection** | Browse, search, install, and submit personas to community collection |
219
+ | 🔄 **Roundtrip Workflow** | Complete cycle: discover → customize → share → collaborate |
220
+ | 📁 **GitHub Portfolio** | Personal repository for storing and versioning your AI elements |
221
+ | 👤 **User Identity System** | Environment-based attribution for persona creators |
222
+ | 🆔 **Unique ID System** | Advanced ID generation: `{type}_{name}_{author}_{YYYYMMDD}-{HHMMSS}` |
223
+ | 💬 **Chat-Based Management** | Create, edit, and validate personas through conversational interface |
224
+ | 🔄 **Real-time Operations** | Live editing with automatic version bumping and validation |
225
+ | 📦 **NPM Installation** | Install MCP servers from npm with cross-platform support and atomic operations |
226
+ | 🛡️ **Data Protection** | Copy-on-write for default personas, comprehensive backup system |
227
+ | 🏠 **Local-First Architecture** | Full functionality without cloud dependency |
228
+
229
+ ## 🎨 Portfolio Elements
230
+
231
+ DollhouseMCP supports multiple element types for customizing AI behavior:
232
+
233
+ | Element | Purpose | Status |
234
+ |---------|---------|--------|
235
+ | 🎭 **Personas** | Define AI personality, tone, and behavioral characteristics | ✅ Available |
236
+ | 🛠️ **Skills** | Add specific capabilities like code review, data analysis, or creative writing | ✅ Available |
237
+ | 📝 **Templates** | Create reusable response formats for emails, reports, documentation | ✅ Available |
238
+ | 🤖 **Agents** | Build autonomous assistants that can pursue goals and make decisions | ✅ Available |
239
+ | 💬 **Prompts** | Pre-configured conversation starters and structured interactions | 🔄 Coming Soon |
240
+ | 🧠 **Memory** | Persistent context storage with retention policies and search capabilities | 🔄 Coming Soon |
241
+ | 🎯 **Ensemble** | Orchestrate multiple elements together as one unified entity | 🔄 Coming Soon |
242
+
243
+ Your portfolio lives in `~/.dollhouse/portfolio/` with elements organized by type.
244
+
245
+ ## 🔧 Troubleshooting
246
+
247
+ ### Common Issues
248
+
249
+ | Issue | Solution |
250
+ |-------|----------|
251
+ | **Personas not loading** | Check `~/.dollhouse/portfolio/personas/` directory exists |
252
+ | **Server won't start** | Ensure Node.js v20+ is installed: `node --version` |
253
+ | **Collection not working** | Check internet connection and GitHub API access |
254
+ | **Tools not appearing in Claude** | Restart Claude Desktop completely after config changes |
255
+ | **"Cannot find module" errors** | Reinstall: `npm install -g @dollhousemcp/mcp-server@latest` |
256
+ | **Rate limit errors** | Wait 60 seconds; GitHub API has hourly limits |
257
+
258
+ ### Need Help?
259
+
260
+ - 📖 [Full Troubleshooting Guide](docs/TROUBLESHOOTING.md)
261
+ - 💬 [GitHub Issues](https://github.com/DollhouseMCP/mcp-server/issues)
262
+ - 💭 [GitHub Discussions](https://github.com/DollhouseMCP/mcp-server/discussions)
263
+
264
+ ## 📚 Resources
265
+
266
+ ### Documentation
267
+ - [Roundtrip Workflow Guide](docs/guides/ROUNDTRIP_WORKFLOW_USER_GUIDE.md)
268
+ - [Portfolio Setup Guide](docs/guides/PORTFOLIO_SETUP_GUIDE.md)
269
+ - [Element Detection Guide](docs/guides/ELEMENT_DETECTION_GUIDE.md)
270
+ - [PersonaTools Migration Guide](docs/PERSONATOOLS_MIGRATION_GUIDE.md)
271
+ - [API Documentation](docs/API.md)
272
+
273
+ ### Community
274
+ - [GitHub Repository](https://github.com/DollhouseMCP/mcp-server)
275
+ - [NPM Package](https://www.npmjs.com/package/@dollhousemcp/mcp-server)
276
+ - [Community Collection](https://github.com/DollhouseMCP/collection)
277
+ - [Discord Community](https://discord.gg/dollhousemcp) (coming soon)
278
+
279
+ ### Development
280
+ - [Contributing Guide](CONTRIBUTING.md)
281
+ - [Security Policy](SECURITY.md)
282
+ - [Full Changelog](CHANGELOG.md)
283
+
284
+ ## 📄 License
285
+
286
+ DollhouseMCP is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
287
+
288
+ ### What this means:
289
+ - ✅ **Free to use** for personal and commercial purposes
290
+ - ✅ **Modify and distribute** with the same license
291
+ - ✅ **Network use** requires source code disclosure
292
+ - ✅ **Platform stability** commitments protect users
293
+
294
+ See [LICENSE](LICENSE) for full terms.
295
+
296
+ ---
297
+
298
+ *Built with ❤️ by the DollhouseMCP team*
package/README.npm.md ADDED
@@ -0,0 +1,298 @@
1
+ # DollhouseMCP
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@dollhousemcp/mcp-server.svg)](https://www.npmjs.com/package/@dollhousemcp/mcp-server)
4
+ [![MCP Compatible](https://img.shields.io/badge/MCP-Compatible-green)](https://modelcontextprotocol.io)
5
+ [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
6
+ [![Core Build & Test](https://github.com/DollhouseMCP/mcp-server/actions/workflows/core-build-test.yml/badge.svg)](https://github.com/DollhouseMCP/mcp-server/actions/workflows/core-build-test.yml)
7
+
8
+ A comprehensive Model Context Protocol (MCP) server that enables dynamic AI persona management with an integrated GitHub-powered collection. DollhouseMCP allows Claude and other compatible AI assistants to activate different behavioral personas while supporting community sharing and monetization.
9
+
10
+ **🌐 Repository**: https://github.com/DollhouseMCP/mcp-server
11
+ **🏪 Collection**: https://github.com/DollhouseMCP/collection
12
+ **📦 NPM Package**: https://www.npmjs.com/package/@dollhousemcp/mcp-server
13
+ **🌍 Website**: https://dollhousemcp.com (planned)
14
+
15
+ ## 🚀 Quick Start
16
+
17
+ ### Choose Your Installation Method
18
+
19
+ <table>
20
+ <tr>
21
+ <th>Method</th>
22
+ <th>Best For</th>
23
+ <th>Pros</th>
24
+ <th>Cons</th>
25
+ </tr>
26
+ <tr>
27
+ <td><strong>Local Install</strong><br>(Recommended)</td>
28
+ <td>Most users, multiple configs, customization</td>
29
+ <td>✅ Multiple setups<br>✅ Easy backup<br>✅ No permissions</td>
30
+ <td>❌ Longer path in config</td>
31
+ </tr>
32
+ <tr>
33
+ <td><strong>npx</strong></td>
34
+ <td>Quick testing, always latest</td>
35
+ <td>✅ No install<br>✅ Always updated</td>
36
+ <td>❌ Slower startup<br>❌ Needs internet</td>
37
+ </tr>
38
+ <tr>
39
+ <td><strong>Global Install</strong></td>
40
+ <td>Single shared instance</td>
41
+ <td>✅ Short command</td>
42
+ <td>❌ Only one version<br>❌ Needs sudo/admin</td>
43
+ </tr>
44
+ </table>
45
+
46
+ ---
47
+
48
+ ### Method 1: Local Installation (Recommended)
49
+
50
+ Create a dedicated folder for your MCP servers and install there:
51
+
52
+ ```bash
53
+ # Create MCP servers directory
54
+ mkdir ~/mcp-servers
55
+ cd ~/mcp-servers
56
+
57
+ # Install DollhouseMCP
58
+ npm install @dollhousemcp/mcp-server
59
+ ```
60
+
61
+ **Configure Claude Desktop:**
62
+
63
+ Add to your config file:
64
+ - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
65
+ - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
66
+ - **Linux**: `~/.config/Claude/claude_desktop_config.json`
67
+
68
+ ```json
69
+ {
70
+ "mcpServers": {
71
+ "dollhousemcp": {
72
+ "command": "node",
73
+ "args": ["/Users/YOUR_USERNAME/mcp-servers/node_modules/@dollhousemcp/mcp-server/dist/index.js"]
74
+ }
75
+ }
76
+ }
77
+ ```
78
+
79
+ 💡 **Pro tip**: Replace `/Users/YOUR_USERNAME` with your actual home directory path.
80
+
81
+ ---
82
+
83
+ ### Method 2: Always Latest with npx
84
+
85
+ No installation needed! Configure Claude Desktop to always use the latest version:
86
+
87
+ ```json
88
+ {
89
+ "mcpServers": {
90
+ "dollhousemcp": {
91
+ "command": "npx",
92
+ "args": ["@dollhousemcp/mcp-server@latest"]
93
+ }
94
+ }
95
+ }
96
+ ```
97
+
98
+ 📝 **Note**: The `@latest` tag ensures you always get the newest version. Remove it to use npm's cached version.
99
+
100
+ ---
101
+
102
+ ### Method 3: Global Installation
103
+
104
+ ```bash
105
+ # Install globally (may require sudo/admin)
106
+ npm install -g @dollhousemcp/mcp-server
107
+ ```
108
+
109
+ **Configure Claude Desktop:**
110
+
111
+ ```json
112
+ {
113
+ "mcpServers": {
114
+ "dollhousemcp": {
115
+ "command": "dollhousemcp"
116
+ }
117
+ }
118
+ }
119
+ ```
120
+
121
+ ⚠️ **Warning**: Only one version system-wide. Consider local installation for more flexibility.
122
+
123
+ ---
124
+
125
+ ### 🎯 Advanced: Multiple Configurations
126
+
127
+ Want separate portfolios for different contexts? Create multiple local installations:
128
+
129
+ ```bash
130
+ # Personal assistant
131
+ mkdir ~/mcp-servers/personal
132
+ cd ~/mcp-servers/personal
133
+ npm install @dollhousemcp/mcp-server
134
+
135
+ # Work assistant
136
+ mkdir ~/mcp-servers/work
137
+ cd ~/mcp-servers/work
138
+ npm install @dollhousemcp/mcp-server
139
+
140
+ # Creative writing
141
+ mkdir ~/mcp-servers/creative
142
+ cd ~/mcp-servers/creative
143
+ npm install @dollhousemcp/mcp-server
144
+ ```
145
+
146
+ **Configure each with its own portfolio:**
147
+
148
+ ```json
149
+ {
150
+ "mcpServers": {
151
+ "dollhouse-personal": {
152
+ "command": "node",
153
+ "args": ["/Users/YOU/mcp-servers/personal/node_modules/@dollhousemcp/mcp-server/dist/index.js"],
154
+ "env": {
155
+ "DOLLHOUSE_PORTFOLIO_DIR": "/Users/YOU/portfolios/personal"
156
+ }
157
+ },
158
+ "dollhouse-work": {
159
+ "command": "node",
160
+ "args": ["/Users/YOU/mcp-servers/work/node_modules/@dollhousemcp/mcp-server/dist/index.js"],
161
+ "env": {
162
+ "DOLLHOUSE_PORTFOLIO_DIR": "/Users/YOU/portfolios/work"
163
+ }
164
+ }
165
+ }
166
+ }
167
+ ```
168
+
169
+ Now you can enable/disable different configurations in Claude Desktop as needed!
170
+
171
+ ---
172
+
173
+ ### ✅ Verify Installation
174
+
175
+ After configuring and restarting Claude Desktop, test with:
176
+
177
+ ```
178
+ list_elements type="personas"
179
+ ```
180
+
181
+ You should see your available personas. If not, check the [Troubleshooting](#troubleshooting) section.
182
+
183
+ ---
184
+
185
+ ### 📁 Default Portfolio Location
186
+
187
+ By default, your elements are stored in:
188
+ - **macOS/Linux**: `~/.dollhouse/portfolio/`
189
+ - **Windows**: `%USERPROFILE%\.dollhouse\portfolio\`
190
+
191
+ Use the `DOLLHOUSE_PORTFOLIO_DIR` environment variable to customize this location.
192
+
193
+ ## 🎯 Getting Started
194
+
195
+ Once installed, try these commands in Claude:
196
+
197
+ ```bash
198
+ # Browse available personas
199
+ list_elements type="personas"
200
+
201
+ # Activate a persona
202
+ activate_element name="creative-writer" type="personas"
203
+
204
+ # Browse the community collection
205
+ browse_collection type="personas"
206
+
207
+ # Search for specific content
208
+ search_collection query="python" type="skills"
209
+ ```
210
+
211
+ > **📘 New User?** Follow our [Roundtrip Workflow Guide](docs/guides/ROUNDTRIP_WORKFLOW_USER_GUIDE.md) for a complete walkthrough of discovering, customizing, and sharing AI elements with the community.
212
+
213
+ ## ✨ Key Features
214
+
215
+ | Feature | Description |
216
+ |---------|-------------|
217
+ | 🎭 **41 MCP Tools** | Complete portfolio element management through chat interface |
218
+ | 🏪 **GitHub Collection** | Browse, search, install, and submit personas to community collection |
219
+ | 🔄 **Roundtrip Workflow** | Complete cycle: discover → customize → share → collaborate |
220
+ | 📁 **GitHub Portfolio** | Personal repository for storing and versioning your AI elements |
221
+ | 👤 **User Identity System** | Environment-based attribution for persona creators |
222
+ | 🆔 **Unique ID System** | Advanced ID generation: `{type}_{name}_{author}_{YYYYMMDD}-{HHMMSS}` |
223
+ | 💬 **Chat-Based Management** | Create, edit, and validate personas through conversational interface |
224
+ | 🔄 **Real-time Operations** | Live editing with automatic version bumping and validation |
225
+ | 📦 **NPM Installation** | Install MCP servers from npm with cross-platform support and atomic operations |
226
+ | 🛡️ **Data Protection** | Copy-on-write for default personas, comprehensive backup system |
227
+ | 🏠 **Local-First Architecture** | Full functionality without cloud dependency |
228
+
229
+ ## 🎨 Portfolio Elements
230
+
231
+ DollhouseMCP supports multiple element types for customizing AI behavior:
232
+
233
+ | Element | Purpose | Status |
234
+ |---------|---------|--------|
235
+ | 🎭 **Personas** | Define AI personality, tone, and behavioral characteristics | ✅ Available |
236
+ | 🛠️ **Skills** | Add specific capabilities like code review, data analysis, or creative writing | ✅ Available |
237
+ | 📝 **Templates** | Create reusable response formats for emails, reports, documentation | ✅ Available |
238
+ | 🤖 **Agents** | Build autonomous assistants that can pursue goals and make decisions | ✅ Available |
239
+ | 💬 **Prompts** | Pre-configured conversation starters and structured interactions | 🔄 Coming Soon |
240
+ | 🧠 **Memory** | Persistent context storage with retention policies and search capabilities | 🔄 Coming Soon |
241
+ | 🎯 **Ensemble** | Orchestrate multiple elements together as one unified entity | 🔄 Coming Soon |
242
+
243
+ Your portfolio lives in `~/.dollhouse/portfolio/` with elements organized by type.
244
+
245
+ ## 🔧 Troubleshooting
246
+
247
+ ### Common Issues
248
+
249
+ | Issue | Solution |
250
+ |-------|----------|
251
+ | **Personas not loading** | Check `~/.dollhouse/portfolio/personas/` directory exists |
252
+ | **Server won't start** | Ensure Node.js v20+ is installed: `node --version` |
253
+ | **Collection not working** | Check internet connection and GitHub API access |
254
+ | **Tools not appearing in Claude** | Restart Claude Desktop completely after config changes |
255
+ | **"Cannot find module" errors** | Reinstall: `npm install -g @dollhousemcp/mcp-server@latest` |
256
+ | **Rate limit errors** | Wait 60 seconds; GitHub API has hourly limits |
257
+
258
+ ### Need Help?
259
+
260
+ - 📖 [Full Troubleshooting Guide](docs/TROUBLESHOOTING.md)
261
+ - 💬 [GitHub Issues](https://github.com/DollhouseMCP/mcp-server/issues)
262
+ - 💭 [GitHub Discussions](https://github.com/DollhouseMCP/mcp-server/discussions)
263
+
264
+ ## 📚 Resources
265
+
266
+ ### Documentation
267
+ - [Roundtrip Workflow Guide](docs/guides/ROUNDTRIP_WORKFLOW_USER_GUIDE.md)
268
+ - [Portfolio Setup Guide](docs/guides/PORTFOLIO_SETUP_GUIDE.md)
269
+ - [Element Detection Guide](docs/guides/ELEMENT_DETECTION_GUIDE.md)
270
+ - [PersonaTools Migration Guide](docs/PERSONATOOLS_MIGRATION_GUIDE.md)
271
+ - [API Documentation](docs/API.md)
272
+
273
+ ### Community
274
+ - [GitHub Repository](https://github.com/DollhouseMCP/mcp-server)
275
+ - [NPM Package](https://www.npmjs.com/package/@dollhousemcp/mcp-server)
276
+ - [Community Collection](https://github.com/DollhouseMCP/collection)
277
+ - [Discord Community](https://discord.gg/dollhousemcp) (coming soon)
278
+
279
+ ### Development
280
+ - [Contributing Guide](CONTRIBUTING.md)
281
+ - [Security Policy](SECURITY.md)
282
+ - [Full Changelog](CHANGELOG.md)
283
+
284
+ ## 📄 License
285
+
286
+ DollhouseMCP is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
287
+
288
+ ### What this means:
289
+ - ✅ **Free to use** for personal and commercial purposes
290
+ - ✅ **Modify and distribute** with the same license
291
+ - ✅ **Network use** requires source code disclosure
292
+ - ✅ **Platform stability** commitments protect users
293
+
294
+ See [LICENSE](LICENSE) for full terms.
295
+
296
+ ---
297
+
298
+ *Built with ❤️ by the DollhouseMCP team*
@@ -2,8 +2,8 @@
2
2
  * Auto-generated file - DO NOT EDIT
3
3
  * Generated at build time by scripts/generate-version.js
4
4
  */
5
- export declare const PACKAGE_VERSION = "1.6.11";
6
- export declare const BUILD_TIMESTAMP = "2025-08-28T22:52:19.766Z";
5
+ export declare const PACKAGE_VERSION = "1.7.0";
6
+ export declare const BUILD_TIMESTAMP = "2025-08-31T21:07:57.726Z";
7
7
  export declare const BUILD_TYPE: 'npm' | 'git';
8
8
  export declare const PACKAGE_NAME = "@dollhousemcp/mcp-server";
9
9
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/generated/version.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,eAAO,MAAM,eAAe,WAAW,CAAC;AACxC,eAAO,MAAM,eAAe,6BAA6B,CAAC;AAC1D,eAAO,MAAM,UAAU,EAAE,KAAK,GAAG,KAAa,CAAC;AAC/C,eAAO,MAAM,YAAY,6BAA6B,CAAC"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/generated/version.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,eAAO,MAAM,eAAe,UAAU,CAAC;AACvC,eAAO,MAAM,eAAe,6BAA6B,CAAC;AAC1D,eAAO,MAAM,UAAU,EAAE,KAAK,GAAG,KAAa,CAAC;AAC/C,eAAO,MAAM,YAAY,6BAA6B,CAAC"}
@@ -2,8 +2,8 @@
2
2
  * Auto-generated file - DO NOT EDIT
3
3
  * Generated at build time by scripts/generate-version.js
4
4
  */
5
- export const PACKAGE_VERSION = '1.6.11';
6
- export const BUILD_TIMESTAMP = '2025-08-28T22:52:19.766Z';
5
+ export const PACKAGE_VERSION = '1.7.0';
6
+ export const BUILD_TIMESTAMP = '2025-08-31T21:07:57.726Z';
7
7
  export const BUILD_TYPE = 'npm';
8
8
  export const PACKAGE_NAME = '@dollhousemcp/mcp-server';
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9nZW5lcmF0ZWQvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7O0dBR0c7QUFFSCxNQUFNLENBQUMsTUFBTSxlQUFlLEdBQUcsUUFBUSxDQUFDO0FBQ3hDLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBRywwQkFBMEIsQ0FBQztBQUMxRCxNQUFNLENBQUMsTUFBTSxVQUFVLEdBQWtCLEtBQUssQ0FBQztBQUMvQyxNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUcsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEF1dG8tZ2VuZXJhdGVkIGZpbGUgLSBETyBOT1QgRURJVFxuICogR2VuZXJhdGVkIGF0IGJ1aWxkIHRpbWUgYnkgc2NyaXB0cy9nZW5lcmF0ZS12ZXJzaW9uLmpzXG4gKi9cblxuZXhwb3J0IGNvbnN0IFBBQ0tBR0VfVkVSU0lPTiA9ICcxLjYuMTEnO1xuZXhwb3J0IGNvbnN0IEJVSUxEX1RJTUVTVEFNUCA9ICcyMDI1LTA4LTI4VDIyOjUyOjE5Ljc2NlonO1xuZXhwb3J0IGNvbnN0IEJVSUxEX1RZUEU6ICducG0nIHwgJ2dpdCcgPSAnbnBtJztcbmV4cG9ydCBjb25zdCBQQUNLQUdFX05BTUUgPSAnQGRvbGxob3VzZW1jcC9tY3Atc2VydmVyJztcbiJdfQ==
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9nZW5lcmF0ZWQvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7O0dBR0c7QUFFSCxNQUFNLENBQUMsTUFBTSxlQUFlLEdBQUcsT0FBTyxDQUFDO0FBQ3ZDLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBRywwQkFBMEIsQ0FBQztBQUMxRCxNQUFNLENBQUMsTUFBTSxVQUFVLEdBQWtCLEtBQUssQ0FBQztBQUMvQyxNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUcsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEF1dG8tZ2VuZXJhdGVkIGZpbGUgLSBETyBOT1QgRURJVFxuICogR2VuZXJhdGVkIGF0IGJ1aWxkIHRpbWUgYnkgc2NyaXB0cy9nZW5lcmF0ZS12ZXJzaW9uLmpzXG4gKi9cblxuZXhwb3J0IGNvbnN0IFBBQ0tBR0VfVkVSU0lPTiA9ICcxLjcuMCc7XG5leHBvcnQgY29uc3QgQlVJTERfVElNRVNUQU1QID0gJzIwMjUtMDgtMzFUMjE6MDc6NTcuNzI2Wic7XG5leHBvcnQgY29uc3QgQlVJTERfVFlQRTogJ25wbScgfCAnZ2l0JyA9ICducG0nO1xuZXhwb3J0IGNvbnN0IFBBQ0tBR0VfTkFNRSA9ICdAZG9sbGhvdXNlbWNwL21jcC1zZXJ2ZXInO1xuIl19
package/dist/index.d.ts CHANGED
@@ -24,7 +24,6 @@ export declare class DollhouseMCPServer implements IToolHandler {
24
24
  private serverSetup;
25
25
  private personaExporter;
26
26
  private personaImporter?;
27
- private personaSharer;
28
27
  private portfolioManager;
29
28
  private migrationManager;
30
29
  private skillManager;
@@ -353,24 +352,6 @@ export declare class DollhouseMCPServer implements IToolHandler {
353
352
  text: string;
354
353
  }[];
355
354
  }>;
356
- /**
357
- * Share a persona via URL
358
- */
359
- sharePersona(personaName: string, expiryDays?: number): Promise<{
360
- content: {
361
- type: string;
362
- text: string;
363
- }[];
364
- }>;
365
- /**
366
- * Import from a shared URL
367
- */
368
- importFromUrl(url: string, overwrite?: boolean): Promise<{
369
- content: {
370
- type: string;
371
- text: string;
372
- }[];
373
- }>;
374
355
  /**
375
356
  * Portfolio management methods
376
357
  */
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}