diff --git a/.claude/settings.json b/.claude/settings.json index 352cc7a..bcc78bb 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -1,4 +1,7 @@ { + "enabledMcpjsonServers": [ + "story-kit" + ], "permissions": { "allow": [ "Bash(./server/target/debug/story-kit-server:*)", @@ -53,10 +56,9 @@ "WebFetch(domain:portkey.ai)", "WebFetch(domain:www.shuttle.dev)", "WebSearch", - "mcp__story-kit__*" + "mcp__story-kit__*", + "Edit", + "Write" ] - }, - "enabledMcpjsonServers": [ - "story-kit" - ] -} + } +} \ No newline at end of file diff --git a/.mcp.json b/.mcp.json index 22f1f26..a36a88a 100644 --- a/.mcp.json +++ b/.mcp.json @@ -2,7 +2,7 @@ "mcpServers": { "story-kit": { "type": "http", - "url": "http://localhost:3010/mcp" + "url": "http://localhost:3001/mcp" } } } diff --git a/README.md b/README.md index 538e106..8921160 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Living Spec Standalone (Web Server Binary) +# Story Kit This app runs as a single Rust web server binary that serves the Vite/React frontend and exposes APIs. The frontend lives in the `frontend/` directory. diff --git a/server/Cargo.toml b/server/Cargo.toml index 2655059..9446fe5 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "story-kit-server" +name = "story-kit" version = "0.1.0" edition = "2024" build = "build.rs"