Skip to content

Commit 7c9a141

Browse files
RusDynclaude
andcommitted
Bump to v0.1.3 and publish to MCP registry
Fix server.json casing (io.github.Writbase/writbase) and add required transport/identifier fields for registry schema validation. Bump all package versions to 0.1.3 for npm publish with mcpName field. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 41159d1 commit 7c9a141

3 files changed

Lines changed: 28 additions & 11 deletions

File tree

cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "writbase",
3-
"mcpName": "io.github.writbase/writbase",
4-
"version": "0.1.2",
3+
"mcpName": "io.github.Writbase/writbase",
4+
"version": "0.1.3",
55
"type": "module",
66
"description": "WritBase CLI — self-hosted operator toolkit for agent-first task management",
77
"bin": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "writbase",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

server.json

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3-
"name": "io.github.writbase/writbase",
4-
"description": "MCP-native task management for AI agent fleets. Persistent task registry with scoped permissions, inter-agent delegation, and full provenance.",
5-
"version": "0.1.2",
3+
"name": "io.github.Writbase/writbase",
4+
"description": "MCP-native task management for AI agent fleets with scoped permissions and provenance.",
5+
"version": "0.1.3",
66
"repository": {
77
"url": "https://github.com/Writbase/writbase",
88
"source": "github"
99
},
1010
"license": "Apache-2.0",
1111
"remotes": [
1212
{
13-
"transportType": "streamable-http",
14-
"url": "https://${PROJECT_REF}.supabase.co/functions/v1/mcp-server/mcp",
13+
"type": "streamable-http",
14+
"url": "https://{PROJECT_REF}.supabase.co/functions/v1/mcp-server/mcp",
1515
"variables": {
1616
"PROJECT_REF": {
1717
"description": "Your Supabase project reference ID",
@@ -30,9 +30,26 @@
3030
"packages": [
3131
{
3232
"registryType": "npm",
33-
"name": "writbase",
34-
"version": "0.1.2",
35-
"runtimeHint": "npx"
33+
"identifier": "writbase",
34+
"version": "0.1.3",
35+
"runtimeHint": "npx",
36+
"transport": {
37+
"type": "stdio"
38+
},
39+
"environmentVariables": [
40+
{
41+
"name": "WRITBASE_URL",
42+
"description": "Your WritBase MCP endpoint URL",
43+
"isRequired": true,
44+
"isSecret": false
45+
},
46+
{
47+
"name": "WRITBASE_AGENT_KEY",
48+
"description": "Agent key (wb_<key_id>_<secret>)",
49+
"isRequired": true,
50+
"isSecret": true
51+
}
52+
]
3653
}
3754
]
3855
}

0 commit comments

Comments
 (0)