File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ coverage/
1010tags
1111tags.ignore
1212
13+ data /
1314docs /.obsidian
1415examples /** /.env
1516examples /** /data
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ cd bb-mcp-server/examples/1-simple
3535cp .env.example .env
3636
3737# Run the MCP server
38- deno run --allow-all main.ts
38+ deno run --allow-all --unstable-kv main.ts
3939```
4040
4141** ✨ What you get out of the box:**
@@ -86,19 +86,19 @@ You can run any example directly without cloning the repository:
8686
8787``` bash
8888# Run the simple example
89- deno run --allow-all jsr:@beyondbetter/bb-mcp-server@0.1.4 /examples/1-simple
89+ deno run --allow-all --unstable-kv jsr:@beyondbetter/bb-mcp-server/examples/1-simple
9090
9191# Run the plugin-workflows example
92- deno run --allow-all jsr:@beyondbetter/bb-mcp-server@0.1.4 /examples/2-plugin-workflows
92+ deno run --allow-all --unstable-kv jsr:@beyondbetter/bb-mcp-server/examples/2-plugin-workflows
9393
9494# Run the OAuth example
95- deno run --allow-all jsr:@beyondbetter/bb-mcp-server@0.1.4 /examples/3-plugin-api-auth
95+ deno run --allow-all --unstable-kv jsr:@beyondbetter/bb-mcp-server/examples/3-plugin-api-auth
9696
9797# Run the manual dependencies example
98- deno run --allow-all jsr:@beyondbetter/bb-mcp-server@0.1.4 /examples/4-manual-deps
98+ deno run --allow-all --unstable-kv jsr:@beyondbetter/bb-mcp-server/examples/4-manual-deps
9999
100100# Run the chunked storage demo
101- deno run --allow-all jsr:@beyondbetter/bb-mcp-server@0.1.4 /examples/chunked-storage-demo
101+ deno run --allow-all --unstable-kv jsr:@beyondbetter/bb-mcp-server/examples/chunked-storage-demo
102102```
103103
104104** Note** : Examples may require environment configuration (` .env ` file) for full functionality.
You can’t perform that action at this time.
0 commit comments