Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.devzspy/discourse-mcp-extended

NPM · @DEVZSPY/DISCOURSE-MCP-EXTENDED · SCANNED AUG 4

Discourse MCP server (stdio) with review-queue tools added. Fork of @discourse/mcp.

+46 this week 70 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability81
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 1496 tokens (~71/item across 21 items; 13 tools + 8 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management30
  • Stability observed for 9 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage93
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 79% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @devzspy/discourse-mcp-extended

# add to Claude Code
claude mcp add devzspy-discourse-mcp-extended -- npx -y @devzspy/discourse-mcp-extended
# add to Codex CLI
codex mcp add devzspy-discourse-mcp-extended -- npx -y @devzspy/discourse-mcp-extended
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "devzspy-discourse-mcp-extended": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@devzspy/discourse-mcp-extended"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add devzspy-discourse-mcp-extended --command npx --arg -y --arg @devzspy/discourse-mcp-extended
# ~/.hermes/config.yaml
mcp_servers:
  devzspy-discourse-mcp-extended:
    command: "npx"
    args: ["-y", "@devzspy/discourse-mcp-extended"]
// mcp.json
{
  "mcpServers": {
    "devzspy-discourse-mcp-extended": {
      "command": "npx",
      "args": [
        "-y",
        "@devzspy/discourse-mcp-extended"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +4
    • Stability: unverified → 0.27 functional
  • 2 Aug 26 +25
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Tool coverage: 100 → unverified functional
    • Schema quality: 100 → unverified functional
    • Schema quality: unverified → good functional
    • MCP protocol: unverified → pass functional
    • Maintenance: unverified → pass functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Licence: MIT functional
  • 1 Aug 26 +15
    • Malware scan: unverified → pass security
  • 31 Jul 26 −8
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 +10
    • Malware scan: pass → unverified security
    • Schema quality: unverified → 100 functional
    • Tool coverage: unverified → 100 functional
  • 28 Jul 26 −28
    • Tool coverage: 100 → unverified functional
    • Schema quality: 100 → unverified functional
  • 27 Jul 26 52

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 4 Aug 2026 · Analysed npm/@devzspy/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 95 packages

95 packages in the resolved dependency tree · 95 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 13 exposed · ~1,248 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
discourse_filter_topics ~197

Filter topics with a concise query language. Returns JSON object with results array (id, slug, title) and meta (page, limit, has_more). Query syntax: category/categories (comma=OR, '=category'=without subcats, '-'=exclude), tag/tags (comma=OR, '+'=AND), status:(open|closed|archived|listed|unlisted|public), in:(bookmarked|watching|tracking|muted|pinned), dates: created/activity-(before|after) YYYY-MM-DD or N days, order: activity|created|latest-post|likes|views with optional -asc.

NameTypeReqDescription
filterstringyesFilter query, e.g. 'category:support status:open created-after:30 order:activity'
pageintegerPage number (0-based, default: 0)
per_pageintegerItems per page (max 50)

No output schema declared.

No examples provided.

discourse_get_chat_messages ~141

Get messages from a chat channel. Returns JSON object with channel_id, messages array (id, username, created_at, message, edited, thread_id, in_reply_to_id), and meta.

NameTypeReqDescription
channel_idintegeryesThe chat channel ID
directionstringPagination direction: 'past' for older messages, 'future' for newer
page_sizeintegerNumber of messages to return (default: 50, max: 50)
target_datestringISO 8601 date string to query messages around
target_message_idintegerMessage ID to query around or paginate from

No output schema declared.

No examples provided.

discourse_get_draft ~79

Retrieve a specific draft by key. Returns JSON with draft_key, sequence, and parsed data (title, reply, categoryId, tags, action).

NameTypeReqDescription
draft_keystringyesDraft key (e.g., "new_topic", "topic_123", "new_private_message")
sequenceintegerExpected sequence number (optional)

No output schema declared.

No examples provided.

discourse_get_query ~36

Get full details of a Data Explorer query including SQL and parameters. Requires admin API key.

NameTypeReqDescription
idintegeryesQuery ID

No output schema declared.

No examples provided.

discourse_get_user ~42

Get user info. Returns JSON with id, username, name, trust_level, created_at, bio, admin, and moderator.

NameTypeReqDescription
usernamestringyes

No output schema declared.

No examples provided.

discourse_list_reviewables ~240

List items in the review queue (as seen at /review), e.g. queued/pending posts and flagged posts. Returns JSON with reviewables array (id, type, status, score, created_at, topic_id, category_id, post_id, created_by, target_created_by, title, excerpt, version, actions) and meta (page, limit, has_more, total). The `actions` array lists valid action ids for discourse_perform_reviewable_action (e.g. approve_post, reject_post, agree_and_hide, disagree, delete).

NameTypeReqDescription
category_idinteger
pageintegerPage number (0-based, 10 items per page - Discourse's fixed page size)
prioritystringMinimum priority filter
sort_orderstringSort order (default: score, matching /review?sort_order=score)
statusstringFilter by status (default: pending)
topic_idinteger
typestringFilter by reviewable type, e.g. ReviewableQueuedPost, ReviewableFlaggedPost, ReviewableUser

No output schema declared.

No examples provided.

discourse_list_user_posts ~89

Get paginated list of user posts/replies. Returns JSON object with posts array (id, topic_id, post_number, slug, title, created_at, excerpt, category_id) and meta (page, limit, has_more).

NameTypeReqDescription
limitintegerPosts per page (max 50, default 30)
pageinteger
usernamestringyes

No output schema declared.

No examples provided.

discourse_list_users ~107

List users via admin API. Requires admin API key. Returns ~100 users per page (Discourse's fixed page size). Returns JSON with users array and pagination meta.

NameTypeReqDescription
ascbooleanSort ascending (default: false/descending)
filterstringSearch by username, email, or IP address
orderstringSort order field
pageintegerPage number (0-indexed)
querystringUser query type

No output schema declared.

No examples provided.

discourse_read_post ~42

Read a specific post. Returns JSON with id, topic_id, post_number, username, created_at, and raw content.

NameTypeReqDescription
post_idintegeryes

No output schema declared.

No examples provided.

discourse_read_topic ~78

Read topic metadata and posts. Returns JSON with id, title, slug, category_id, tags, and posts array.

NameTypeReqDescription
post_limitintegerMax posts to return (default 5, max 50)
start_post_numberintegerStart from this post number (1-based)
topic_idintegeryes

No output schema declared.

No examples provided.

discourse_run_query ~105

Execute a Data Explorer query with parameters. Returns columns, rows, result_count, duration_ms. Queries run in read-only transactions with 10-second timeout. Requires admin API key.

NameTypeReqDescription
explainbooleanInclude query execution plan in response
idintegeryesQuery ID to run
limitMaximum number of rows to return (default: query default, use 'ALL' for unlimited)
paramsobjectQuery parameters as key-value pairs

No output schema declared.

No examples provided.

discourse_search ~53

Search site content. Returns JSON object with results array of matching topics (id, slug, title) and meta (total, has_more).

NameTypeReqDescription
max_resultsinteger
querystringyesSearch query

No output schema declared.

No examples provided.

discourse_select_site ~39

Validate and select a Discourse site. Returns JSON with site URL and title.

NameTypeReqDescription
sitestringyesBase URL of the Discourse site

No output schema declared.

No examples provided.