返回插件市场

roblox-devforum-mcp

模型与数据

EL4CTEO/roblox-devforum-mcp

MCP 服务器,为 AI 编码代理提供 Roblox 开发者论坛和创作者文档搜索、Bug 状态、API 健康检查等功能。

  • ai
  • ai-agents
  • claude
  • claude-code
  • deepseek-harness
  • developer-tools
  • devforum
  • dsh
  • dsh-plugin
  • game-development
  • llm
  • luau
  • mcp
  • mcp-server
  • model-context-protocol
  • nodejs
  • roblox
  • roblox-development
  • roblox-studio
  • typescript
GitHub Stars
3GitHub
浏览量
0DSH Plugin Hub
Forks
0GitHub
开放问题
0GitHub Issues
Manifest 版本
1.2.5roblox-devforum-mcp
最近推送
2026年9月3日GitHub
许可证
MITTypeScript
插件类型
Host运行于 DSH Host

验证与兼容性

这里展示目录实际采集到的证据;未声明的信息会明确标为未知。

运行时已验证
01精确来源: npm · roblox-devforum-mcp@1.2.502验证时间: 2026年9月3日03验证版本: 0.1.0-rc.7
当前版本兼容性
已在当前目录版本验证
声明的 Harness 范围
未声明
声明的平台
未声明
适用 Profile
web
构建授权
未检测到需要
权限声明
未声明
外部服务
未声明
遥测声明
未知
未发现已知风险标记

这不是安全背书;安装前仍应查看源码、权限和配置。

查看证据与判定范围

验证仅覆盖标出的来源、版本和 Harness 环境,不代表未来版本仍然兼容。

  • roblox-devforum-mcp@1.2.5
  • 插件已在隔离环境完成加载检查。

README

查看源文件

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 reports and show Roblox's status tag: confirmed, fixed, cannot-reproduce.
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.

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_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.
GITHUB_TOKENRaises the GitHub rate limit for the docs file listing.

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

评论

0
最新优先