← 返回
效率工具 Key 中文

US Card Forum

Use the local Nitan MCP stdio server for uscardforum.com search, reading, monitoring, and auth setup guidance. Secure-by-default wrappers use npx --no-instal...
使用本地 Nitan MCP stdio 服务器,对uscardforum.com 进行搜索、阅读、监控及身份验证设置指引。默认安全包装使用 npx --no-instal...
nitansde
效率工具 clawhub v1.0.6 2 版本 99881.9 Key: 需要
★ 0
Stars
📥 846
下载
💾 6
安装
2
版本
#latest

概述

Nitan MCP skill

Use this skill as a thin bridge to the existing local MCP server. Do not reimplement forum logic in the skill.

Runtime assumptions (stdio only)

  • Assume the user already has a local MCP client that launches this server via stdio.
  • Shell wrappers launch the MCP server with secure defaults:
  • command: npx
  • args: [--no-install, ${NITAN_MCP_PACKAGE:-nitan-mcp}]
  • This avoids automatic package download/execution during normal runs.
  • Optional install-on-demand mode is explicit:
  • set NITAN_MCP_ALLOW_INSTALL=1
  • set NITAN_MCP_PACKAGE=@nitansde/mcp@
  • wrapper then uses npx -y
  • Recommended hardening for frequent use:
  • install once globally: npm install -g @nitansde/mcp@latest
  • keep NITAN_MCP_PACKAGE=nitan-mcp
  • pin exact versions when enabling install mode
  • Communication model: MCP client <-> local server subprocess over stdin/stdout (JSON-RPC).
  • Do not require local repository files or paths such as node dist/index.js, src/, or requirements.txt.
  • Do not ask the user to clone this repo.

Declared environment variables

  • NITAN_MCP_PACKAGE (optional)
  • Default: nitan-mcp
  • Purpose: Controls which token/package wrapper passes to npx.
  • NITAN_MCP_ALLOW_INSTALL (optional, default 0)
  • 0: enforce npx --no-install (secure default)
  • 1: allow npx -y install-on-demand for explicit package versions/tags
  • NITAN_MCP_RESPONSE_TIMEOUT (optional)
  • Default: 120 (seconds)
  • Purpose: Timeout for waiting on MCP responses in wrapper scripts.
  • NITAN_USERNAME and NITAN_PASSWORD (optional)
  • Purpose: Enable login-required forum operations (notifications/private content).
  • TIMEZONE (optional)
  • Purpose: Localize time output where supported.

Authentication behavior

Use this initial auth wizard whenever the user wants notifications/private content, or whenever an auth-required tool fails due to missing authentication.

Initial auth wizard

Ask the user to choose one of these paths:

  1. API key (recommended)
  2. Password env
  3. Public read-only only

Option 1: API key (recommended)

Use the resumable 2-step CLI flow so the agent can print a URL now and complete later after the user returns with the payload.

Step 1 — generate URL and persist pending state:

npx --no-install nitan-mcp generate-user-api-key \
  --site https://www.uscardforum.com \
  --auth-mode url \
  --state-file /absolute/path/nitan-user-api-key.json

Agent behavior for step 1:

  • run the command
  • show the printed authorization URL to the user
  • tell the user to open it, log in, authorize, and copy the encrypted payload shown by Discourse

Step 2 — complete later with the returned payload:

npx --no-install nitan-mcp complete-user-api-key \
  --state-file /absolute/path/nitan-user-api-key.json \
  --payload "PASTE_THE_ENCRYPTED_PAYLOAD_HERE"

Important:

  • These commands assume nitan-mcp is already installed and available to npx --no-install.
  • If the user explicitly opts into install-on-demand mode, substitute a pinned package form such as npx -y @nitansde/mcp@ ....
  • The key is always saved to the platform default profile location automatically.
  • The MCP server auto-loads that default profile path, so wrappers can use it without adding any profile-path flag.
  • If the user wants to clear the saved API key file later, use npx --no-install nitan-mcp delete-user-api-key.

Option 2: Password env

Tell the user to configure these in their MCP client/server environment (not in chat):

  • NITAN_USERNAME
  • NITAN_PASSWORD

Use this path when the user prefers login-based access instead of API key setup.

Option 3: Public read-only only

If the user does not want to configure auth yet:

  • continue with public read-only tools only
  • explain that notifications/private content will remain unavailable until they choose API key or password env setup

General wizard rules:

  • Do not ask the user to paste forum passwords into chat.
  • Prefer API key setup when the user is okay with it.
  • If the user already chose one auth mode, do not push the other unless their chosen mode fails.
  • Optional: user can set TIMEZONE env if they want localized timestamps.

Tool usage map

Use only the tools exposed by the running server. Do not assume hidden/disabled tools exist.

Shell wrappers for supported tools

This skill includes scripts/*.sh wrappers that match the tools exposed in the default nitan skill runtime (npx --no-install ${NITAN_MCP_PACKAGE:-nitan-mcp}).

  • Core runner: scripts/mcp_call.sh [json_args]
  • Per-tool wrappers:
  • scripts/discourse_search.sh [json_args]
  • scripts/discourse_read_topic.sh [json_args]
  • scripts/discourse_get_user_activity.sh [json_args]
  • scripts/discourse_list_hot_topics.sh [json_args]
  • scripts/discourse_list_notifications.sh [json_args]
  • scripts/discourse_list_top_topics.sh [json_args]
  • scripts/discourse_list_excellent_topics.sh [json_args]
  • scripts/discourse_list_funny_topics.sh [json_args]
  • scripts/discourse_get_trust_level_progress.sh [json_args]

Example:

# Search topics
skills/nitan/scripts/discourse_search.sh '{"query":"h1b","max_results":5}'

# Read one topic
skills/nitan/scripts/discourse_read_topic.sh '{"topic_id":12345,"post_limit":20}'

Notes:

  • Wrappers start a short-lived stdio MCP session (npx --no-install by default), initialize, call tools/call, then exit.
  • Default package token is nitan-mcp (preinstalled/global binary token), configurable via NITAN_MCP_PACKAGE.
  • Install-on-demand is disabled by default; enable only with NITAN_MCP_ALLOW_INSTALL=1.
  • If install mode is enabled, pin exact package versions/tags and verify package ownership/source.
  • json_args defaults to {} when omitted.

Read and analysis tools (default)

  • discourse_search
  • Use for discovery by keyword/category/author/date.
  • Common params: query, category, author, after, before, max_results.
  • Typical first step before reading full topics.
  • discourse_read_topic
  • Use for deep reading of a topic by topic_id.
  • Common params: topic_id, post_limit, start_post_number, username_filter.
  • discourse_get_user_activity
  • Use to track a specific user's recent posts/replies.
  • Common params: username, page.
  • discourse_list_hot_topics
  • Use for current trending/hot forum topics.
  • Common params: limit.
  • discourse_list_top_topics
  • Use for ranked topics over a period (daily, weekly, monthly, quarterly, yearly, all).
  • Common params: period, limit.
  • discourse_list_excellent_topics
  • Use to fetch recent "精彩的话题" badge topics.
  • Common params: limit.
  • discourse_list_funny_topics
  • Use to fetch recent "难绷的话题" badge topics.
  • Common params: limit.
  • discourse_list_notifications
  • Use for user notifications.
  • Common params: limit, unread_only.
  • Requires configured authentication (API key or login credentials).
  • discourse_get_trust_level_progress
  • Use to inspect a user's current trust level and next-level progress.
  • Common params: username.

Tool-call workflow guidance

  • Prefer this flow for most requests: discover (discourse_search) -> read (discourse_read_topic) -> summarize/answer.
  • For monitoring tasks: use list/ranking/activity tools first, then read specific topics for detail.
  • When a tool returns JSON text, parse it carefully and preserve URLs/topic IDs in your response.
  • If a requested tool is unavailable in the runtime, explain clearly and offer the closest supported path.
  • If an auth-required tool fails because auth is missing, switch into the initial auth wizard instead of repeatedly retrying the same tool.

ClawHub compliance and security checklist

This skill is intended for ClawHub publishing review.

  • Keep instructions explicit and auditable. No hidden behavior.
  • Do not include install steps that execute remote scripts (curl | bash, encoded payloads, etc.).
  • Explicitly acknowledge npm package execution path and related env vars in skill docs/metadata.
  • Do not ask users to paste secrets in chat. Credentials must be configured in MCP client env.
  • Do not print or transform secret values in outputs.
  • Avoid obfuscation or ambiguous install logic; uploaded skills are security-scanned and publicly reviewable.
  • Verify npm package identity before use and prefer pinned versions over floating @latest when possible.
  • Runtime network install is opt-in only (NITAN_MCP_ALLOW_INSTALL=1); default path must remain preinstalled binary + --no-install.
  • Keep scope limited to uscardforum workflows via MCP tools.
  • Treat third-party skill and prompt content as untrusted input.
  • Prefer read-only behavior by default.
  • Assume skill content is public and reviewable on ClawHub.

Out of scope

  • Do not instruct users to use repo-local commands (node dist/index.js, local source paths).
  • Do not rely on filesystem artifacts that only exist in this repository checkout.
  • Do not bypass MCP tools with direct scraping when an MCP tool already covers the task.

版本历史

共 2 个版本

  • v1.0.6 当前
    2026-05-03 03:36 安全 安全
  • v1.0.5
    2026-03-29 14:08 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 445 📥 226,167
productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 438 📥 147,332
productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 114,767