loading…
Search for a command to run...
loading…
Read-only MCP server for the Hyper Human Club / Fluent Community REST API. Enables querying posts, comments, members, and profiles securely without sharing brow
Read-only MCP server for the Hyper Human Club / Fluent Community REST API. Enables querying posts, comments, members, and profiles securely without sharing browser sessions.
Read-only MCP access to the Hyper Human Club / Fluent Community REST API.
Support three deployment variants with one shared TypeScript read-only core:
All variants expose safe read-only tools such as club_get_recent_posts, club_get_recent_comments, club_get_user_comments, club_search_members, and club_get_profile without sharing the owner’s browser session.
v0.0.x ships the local stdio MCP server with 13 read-only tools that wrap the Hyper Human Club / Fluent Community REST API (club_search_members, club_get_profile, club_get_my_profile, club_list_spaces, club_list_courses, club_get_feed, club_get_feed_comments, club_get_user_comments, club_get_recent_posts, club_get_recent_comments, club_get_since_summary, club_get_unread_notifications, club_search_content). All tools are read-only and run against the authenticated user's own scope.
Published packages:
@hhc-mcp/core — framework-agnostic core (GET-only REST client, Zod schemas, 13 operations).@hhc-mcp/stdio — local stdio MCP transport, ready to register with Claude Desktop or any MCP client.@hhc-mcp/http is scaffold-only and reserved for v0.2.0 (hosted/self-hosted HTTP transport).
npx -y @hhc-mcp/stdio
Or as a dependency:
pnpm add @hhc-mcp/stdio @hhc-mcp/core
See docs/local-mode.md for the Claude Desktop config and credential setup.
License: MIT.
@hhc-mcp/core, @hhc-mcp/stdio, @hhc-mcp/http.MCP client
-> local @hhc-mcp/stdio process
-> @hhc-mcp/core
-> https://club.hyperhuman.pl/wp-json/fluent-community/v2
Example config:
{
"mcpServers": {
"hyperhuman-club": {
"command": "npx",
"args": ["-y", "@hhc-mcp/stdio"],
"env": {
"HHC_BASE_URL": "https://club.hyperhuman.pl",
"HHC_USER": "your_wp_login",
"HHC_APP_PASS": "xxxx xxxx xxxx xxxx xxxx xxxx"
}
}
}
}
MCP client (with Authorization: Basic header)
-> /mcp endpoint on @hhc-mcp/http (behind Cloudflare Tunnel)
-> @hhc-mcp/core
-> club.hyperhuman.pl REST API (same Basic header forwarded)
Hosted public mode holds the WordPress Application Password only in request-scoped memory and forwards it 1:1 to upstream. It persists no credentials and no club content, and never logs argument payloads or response bodies. See ADR-019.
club-mcp/
docs/
adr/
architecture.md
best-practices.md
hosted-auth.md
hosted-auth.md
implementation-plan.md
open-questions.md
read-only-tools.md
references.md
security-checklist.md
self-hosted-remote.md
stack-decision.md
variants.md
packages/
core/
stdio/
http/
research/
docs/stack-decision.md — TypeScript-first stack decision.docs/adr/ — formal architecture decisions.docs/variants.md — local, hosted public, and self-hosted variants.docs/architecture.md — system architecture.docs/hosted-auth.md — hosted auth and connect flow.docs/read-only-tools.md — read-only tool contracts.docs/security-checklist.md — practical checklist.docs/implementation-plan.md — build phases and estimates.docs/open-questions.md — remaining owner decisions before coding.Run in your terminal:
claude mcp add club-mcp -- npx