demo-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@demo-mcpadd a note titled 'MCP demo' with tags demo, talk"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
demo-mcp
Private shared memory POC for the Silex talk MCP + second cerveau: OKF markdown notes + links (optional human summary). Same brain via web UI and MCP (read + write).
Auth: shared API key (
Authorization: Bearer …orX-API-Key).
Rate limit: 3 adds / min and 3 modifications / min per IP.
What you can share
Kind | Format | Rules |
Note | Markdown + Open Knowledge Format frontmatter |
|
Link | URL ± title ± tags ± summary | Summary is human-only (never server-generated). List |
Notes are vectorized (when Workers AI + Vectorize are bound). Links are vectorized only if a summary is present.
Related MCP server: Bruin
Monorepo
apps/api Hono Worker — REST + MCP + D1 + (optional) Vectorize/AI
apps/web TanStack Router + React Query — private UI R/W
packages/shared OKF parser/validator + Zod schemas
plugins/demo-mcp Claude Code plugin (MCP + skills)
.claude-plugin/ Marketplace manifest (install from this repo)Claude Code plugin
MCP alone = tools. Plugin = MCP + skills (when/how to use OKF, no auto-summaries, rate limits).
claude plugin marketplace add MickaelV0/demo-mcp
claude plugin install demo-mcp@demo-mcp
# prompts for API key (sensitive userConfig)Local:
claude --plugin-dir ./plugins/demo-mcpSee plugins/demo-mcp/README.md.
Quick start
bun install
# Local API key — without it every /api/* and /mcp call returns 503
cp apps/api/.dev.vars.example apps/api/.dev.vars
# API (D1 local)
bun run dev:api
# → http://127.0.0.1:8787
# Web (proxies /api + /mcp to 8787)
bun run dev:web
# → http://127.0.0.1:5173Apply local D1 migrations (first run / after schema change):
bun run db:migrate:localExamples below use the
.dev.vars.examplekey (dev-local-key). Every/api/*and/mcpcall needs it —Authorization: Bearer …orX-API-Key.
Example: publish a note
curl -s http://127.0.0.1:8787/api/notes \
-H 'authorization: Bearer dev-local-key' \
-H 'content-type: text/markdown' \
--data-binary @- <<'MD'
---
type: Note
title: Hello shared memory
tags: [demo, mcp]
---
Body in markdown. Link [[other]] or [x](./other.md).
MDExample: link without summary
curl -s http://127.0.0.1:8787/api/links \
-H 'authorization: Bearer dev-local-key' \
-H 'content-type: application/json' \
-d '{"url":"https://example.com","tags":["reading"]}'MCP
claude mcp add demo-mcp --transport http http://127.0.0.1:8787/mcp \
--header "Authorization: Bearer dev-local-key"POST /mcp JSON-RPC: initialize, tools/list, tools/call.
REST map
Method | Path | Bucket |
GET |
| — |
POST |
| add |
PUT |
| mod |
POST |
| add |
GET |
| — |
POST |
| add |
PATCH |
| mod |
GET |
| — |
GET |
| — |
POST |
| tools write → same buckets |
Production
URL: https://demo-mcp.roxabi.dev
(same origin: SPA + /api/* + POST /mcp)
Deploy (CF credentials in shell only — never commit .env):
export CLOUDFLARE_ACCOUNT_ID=b5e90be971920ce406f7b679c4f1cd33
bun install
bun --filter @demo-mcp/web build
bunx wrangler d1 migrations apply demo-mcp --remote --config apps/api/wrangler.toml
# set once (or rotate): do NOT put this in the repo
printf '%s' "$DEMO_MCP_API_KEY" | bunx wrangler secret put API_KEY --config apps/api/wrangler.toml
bunx wrangler deploy --config apps/api/wrangler.tomlPublic without key: GET /health only. All /api/* and /mcp need the key.
Optional embeddings: create Vectorize index, uncomment [[vectorize]] in apps/api/wrangler.toml, redeploy.
Design notes
POC auth — one shared API key (Worker secret
API_KEY), not full user accounts.No
.envin repo —wrangler.toml[vars]for public config; secrets viawrangler secret put.OKF only for notes — invalid frontmatter → 400.
Double surface — web curation + MCP action, one Hono API.
Context: Silex talk MCP, plugins & second cerveau.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityAmaintenanceMCP server that enables full-text search and link navigation over Markdown files as a knowledge graph.
- Alicense-qualityCmaintenanceMCP server for AI agents to read, write, and organize notes in a local-first, human-in-the-loop note-taking app.11MIT
- AlicenseAqualityAmaintenanceProvides a single-writer MCP server for a governance-grade knowledge base of markdown documents with version control and query capabilities.12918Apache 2.0
- Alicense-qualityBmaintenanceA dynamic, governed memory layer for Markdown notes that serves knowledge to AI clients and humans through a secure MCP server, with scoped access, git-audited changes, and optional LLM-powered semantic search.Apache 2.0
Related MCP Connectors
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
Cross-vendor AI memory over MCP. One semantic store, readable and writeable from every MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MickaelV0/demo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server