DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Roblox Devforum Mcp — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

roblox-devforum-mcp

Roblox Devforum Mcp

MCP server that searches the Roblox DevForum and official creator docs so AI coding agents can debug Roblox games against real community and engine knowledge.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add roblox-devforum-mcp@1.2.9
READMECompatibilityVersions

Compatibility and provenance

Roblox Devforum Mcp is published as roblox-devforum-mcp and currently resolves to version 1.2.9. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

1.2.9stable
9/18/2026
1.2.8stable
9/12/2026
1.2.7stable
9/7/2026
Show 6 more versionsCollapse versions
1.2.6stable
9/3/2026
1.2.5stable
9/3/2026
1.2.1stable
8/31/2026
1.2.0stable
8/30/2026
1.1.5stable
8/29/2026
1.1.1stable
8/29/2026

Related plugins

Loading related plugins…

Latest
1.2.9
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
294.4 kB
Files
40
Surface
any
License
MIT
Source
npm
GitHub
★ 3
Weekly downloads
310
Security scan
✓ v1.2.9 scan passed
Last push
9/18/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

Roblox Developer Forum

roblox-devforum-mcp

An MCP server that gives an AI coding agent the Roblox Developer Forum and the official creator docs.

When your agent hits a Roblox bug, it can check whether Roblox already has it triaged, read the accepted answer, and confirm the API before writing Luau.

No API key, no login, no setup.

Install

claude mcp add roblox-devforum -- npx -y roblox-devforum-mcp

DeepSeek Harness:

dsh plugin --profile web add roblox-devforum-mcp

Any other MCP client:

{
  "mcpServers": {
    "roblox-devforum": {
      "command": "npx",
      "args": ["-y", "roblox-devforum-mcp"]
    }
  }
}

Tools

ToolWhat it does
search_devforumSearch the forum. Filters for category, tag, solved-only, likes and date. Pass several phrasings to run them at once.
search_bugsSearch only the bug-report categories, so a hit means somebody reported the same symptom.
get_threadRead a topic as Markdown, accepted answer first, code blocks intact.
get_repliesPage through a long thread.
list_recentLatest or top topics in a category or tag.
list_categoriesEvery category and tag slug the filters accept.
search_creator_docsSearch the docs by page content; pass path to read a page in full.
get_engine_apiSignatures, security levels and deprecations from the live API dump.
check_api_healthCheck APIs before you ship: removed, deprecated, security-gated, yielding.
get_whats_newRecent platform changes — for "this worked last week".
get_weekly_recapAny Roblox Weekly Recap, current or historical.

Every tool is read-only, returns Markdown with source URLs, and stays inside a token budget.

[answered] beside a result means a reply was marked as the solution — by whoever opened the thread, not by Roblox. Roblox does not publish a triage state, so read the thread to see whether staff replied.

Example

"My DataStore:SetAsync keeps failing with 502: API Services rejected request. Is this on Roblox's end?"

The agent runs search_bugs on the error text, get_thread on the best hit, then check_api_health before touching your code.

Configuration

All optional.

VariableDefaultPurpose
DEVFORUM_CACHE_TTL300Search cache lifetime, in seconds.
DEVFORUM_TIMEOUT_MS12000Per-request timeout.
DEVFORUM_DEADLINE_MS24000Total time one request may spend, retries included.
DEVFORUM_MAX_RETRIES3Retries on 429 and 5xx.
DEVFORUM_CONCURRENCY4Simultaneous requests to the DevForum.
DEVFORUM_CDN_CONCURRENCY8Simultaneous requests to GitHub-hosted docs.
DEVFORUM_DOCS_SCAN14Doc pages scored per search.
DEVFORUM_CACHE_DIROS temp dirWhere the API dump and docs index are cached.
DEVFORUM_BASE_URLhttps://devforum.roblox.comPoint at another Discourse instance.

A bad value is ignored, with a note on stderr, and the default is used.

Data sources

devforum.roblox.com (public Discourse API), Roblox/creator-docs, and the Roblox-Client-Tracker API dump.

Not affiliated with or endorsed by Roblox Corporation.

Development

npm install && npm run build
npm test          # offline unit and server tests
npm run inspect   # MCP Inspector against the built server

License

MIT