dy-mcp-demo (dy-mcp)
dy-mcp-demo
dy-mcp のパブリックな認証なしデモです。これはMCP個人コンテキストサーバーです。インストールや設定をすることなく、サーバーが公開するすべてのツールを試すことができます。
ライブURL: https://demo-mcp.dyuhaus.com
ブラウザでURLを開くと、エディトリアルスタイルのWebコンパニオンが表示されます。
または、MCP対応クライアント(Claude Desktop、Claude Codeなど)から
https://demo-mcp.dyuhaus.com/mcpを指定してください(認証ヘッダーは不要です)。
データは架空のものです(「Alex Quinn」という架空のライター兼開発者)。データベース全体が1時間ごとにリセットされるため、作成、編集、削除を自由に行ってください。壊れることはありません。
このデモの元となった、パスワードで保護された実際のサーバーについては、dyuhaus/dy-mcp を参照してください。
dy-mcp と同じ点は?
MCPプロトコルとデータモデルに関するすべて:
6つの型付きコンテキスト:
project,idea,preference,writing_style,skill,general。12のツールすべて:
get_personal_context,list_contexts,get_context,add_context,update_context,delete_context,search_contexts,import_project,import_project_section,list_project_files,get_project_file,delete_project_file。context://配下の7つのリソースすべて。同じSQLiteスキーマ、同じストレージコード、同じインポーター、同じHTTPルート。
Related MCP server: MCP Personal Tools Server
何が違うのか?
認証なし。
/auth/*,/oauth/*,/.well-known/*, セッションクッキー、パスワードブートストラップなどはすべて削除されています。/mcpはオープンです。Web UIは直接ダッシュボードに起動します。1時間ごとのリセット。 スケジュールされたタスクがDBを消去し、架空の人物データで再シードします(
scripts/seed.tsを参照)。デフォルトポートは 7879 です。これにより、同じマシン上でメインのdy-mcpと並行して実行できます。
Webサイドバーに「PUBLIC DEMO」 と「1時間ごとにリセット」という注記が表示されます。
MCPクライアントから試す
Claude Code
claude mcp add --transport http dy-mcp-demo https://demo-mcp.dyuhaus.com/mcpClaude Desktop / 設定ファイルを使用するクライアント
{
"mcpServers": {
"dy-mcp-demo": {
"transport": "http",
"url": "https://demo-mcp.dyuhaus.com/mcp"
}
}
}curl
# list all tools
curl -sS -X POST https://demo-mcp.dyuhaus.com/mcp \
-H "content-type: application/json" \
-H "accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# call a tool
curl -sS -X POST https://demo-mcp.dyuhaus.com/mcp \
-H "content-type: application/json" \
-H "accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_personal_context","arguments":{}}}'ローカルでデモを実行する
npm install
npm run build
npm run seed # wipe + reseed the demo DB
npm run web:build
npm run start:api # http://localhost:7879Web UIはAPIと同じポートで提供されます。
開発ループ:
npm run dev:api # backend with tsx watch
npm run web:dev # vite dev server on :5173HTTPエンドポイント
メソッド | パス | ボディ / クエリ |
GET |
|
|
GET |
|
|
POST |
|
|
GET |
| — |
PATCH |
| 追加ボディの任意のサブセット |
DELETE |
| — |
GET |
|
|
GET |
|
|
GET |
| 完全なペイロードスナップショット |
GET |
| ツール + リソースのカタログ(/Toolsページを駆動) |
GET |
|
|
GET |
| — |
DELETE |
| — |
POST |
|
|
POST |
|
|
POST |
| ストリーム可能なHTTP経由のMCP(ステートレス、シングルラウンドトリップ) |
ホスティング
同梱の scripts/install-demo-task.ps1 は、2つのWindowsスケジュールタスクを登録します:
dy-mcp-demo-api— 起動時に :7879 でビルド済みサーバーを実行します。dy-mcp-demo-reset—tsxを介して1時間ごとにscripts/seed.tsを実行します。
Cloudflareトンネルを任意のホスト名で http://localhost:7879 に向けてください。正確なコマンドについては CLAUDE.md を参照してください。
環境変数
変数 | デフォルト |
|
|
|
|
|
|
|
|
|
|
| (同じオリジン) |
ライセンス
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-qualityDmaintenanceA demonstration server showing MCP implementation in Python with resource handling, tool operations, and reusable prompts for a simple user/post system with local database.
- AlicenseBqualityDmaintenanceA simple server implementing the Model Context Protocol (MCP) that exposes personal tools like note-taking for compatible MCP clients or agents.21,299MIT
- Alicense-qualityDmaintenanceA demonstration Model Context Protocol server that includes a web-based interface for managing persistent configurations. It provides foundational tools for greeting, echoing input, and retrieving or updating server settings through MCP.15MIT
- Alicense-qualityDmaintenanceA single MCP server that gives Claude, ChatGPT, Codex, and any MCP-compatible AI access to the same personal context via two tools: context_get and context_log.1MIT
Related MCP Connectors
The personal context layer for AI: your profile and files, read by any MCP client over OAuth.
One shared context your team's AI tools read & write over MCP. No re-explaining. Free.
Pocket Agent (aipocketagent.com) MCP server — read tools for personas, apps, and product info.
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/dyuhaus/dy-mcp-demo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server