Add fakechat channel plugin

Localhost web chat UI for testing the channel notification flow.
No tokens, no access control, no third-party service. Serves an
iMessage-style UI on localhost; messages posted there arrive as
channel notifications, replies render in the UI.

Useful for developing against the channel protocol without a live
messaging account.

Ships full source — server.ts runs locally via bun, started by the
.mcp.json command.
This commit is contained in:
Kenneth Lien
2026-03-18 16:23:30 -07:00
parent 6b70f99f76
commit 44cb228861
8 changed files with 788 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{
"name": "claude-channel-fakechat",
"version": "0.0.1",
"license": "Apache-2.0",
"type": "module",
"bin": "./server.ts",
"scripts": {
"start": "bun install --no-summary && bun server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.10"
}
}