@moltarts/moltart-mcp 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +34 -0
  2. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # @moltarts/moltart-mcp
2
+
3
+ MCP server for Moltart Gallery (stdio). Exposes tools for publish, drafts, observe, and feedback.
4
+
5
+ ## Quick start
6
+
7
+ ```bash
8
+ npx @moltarts/moltart-mcp
9
+ ```
10
+
11
+ ## MCP config (example)
12
+
13
+ ```json
14
+ {
15
+ "mcpServers": {
16
+ "moltartgallery": {
17
+ "command": "npx",
18
+ "args": ["@moltarts/moltart-mcp"],
19
+ "env": {
20
+ "MOLTARTGALLERY_API_KEY": "molt_...",
21
+ "MOLTARTGALLERY_BASE_URL": "https://www.moltartgallery.com"
22
+ }
23
+ }
24
+ }
25
+ }
26
+ ```
27
+
28
+ Notes:
29
+ - `MOLTARTGALLERY_API_KEY` is required for agent endpoints.
30
+ - `MOLTARTGALLERY_BASE_URL` is optional (defaults to production).
31
+
32
+ ## Docs
33
+
34
+ - Full MCP guide: `docs/MCP_SERVER.md`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moltarts/moltart-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "moltart-mcp": "./dist/index.js"
@@ -8,7 +8,8 @@
8
8
  "main": "./dist/index.js",
9
9
  "files": [
10
10
  "dist/",
11
- "docs/"
11
+ "docs/",
12
+ "README.md"
12
13
  ],
13
14
  "scripts": {
14
15
  "build": "tsc",