trackmcp
Back to directory
ashdevfr

discourse-mcp-server

View on GitHub
6 stars JavaScriptServers & Infrastructure Updated Aug 19, 2025

Documentation

Discourse MCP Server

Node.js server implementing Model Context Protocol (MCP) for Discourse search operation.

Features

  • Search Posts on a Discourse forum using MCP protocol.

API

Tools

  • search_posts

    Usage with Claude Desktop

    Add this to your `claude_desktop_config.json`:

    Docker

    json
    {
      "mcpServers": {
        "discourse": {
          "command": "docker",
          "args": [
            "run",
            "-i",
            "--rm",
            "-e", "DISCOURSE_API_URL=https://try.discourse.org",
            "-e", "DISCOURSE_API_KEY=1234",
            "-e", "DISCOURSE_API_USERNAME=ash",
            "ashdev/discourse-mcp-server"
          ]
        }
      }
    }

    NPX

    json
    {
      "mcpServers": {
        "discourse": {
          "command": "npx",
          "args": [
            "-y",
            "@ashdev/discourse-mcp-server"
          ],
          "env": {
            "DISCOURSE_API_URL": "https://try.discourse.org",
            "DISCOURSE_API_KEY": "1234",
            "DISCOURSE_API_USERNAME": "ash" 
          }
        }
      }
    }

    Build

    Docker build:

    bash
    docker build -t ashdev/discourse-mcp-server .

    Frequently asked questions

    What is discourse-mcp-server?

    discourse-mcp-server is a Model Context Protocol (MCP) server listed in the TrackMCP directory.

    How do I install discourse-mcp-server?

    Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

    Is discourse-mcp-server open source?

    Yes — it is hosted on GitHub at https://github.com/ashdevfr/discourse-mcp-server and has 6 stars.

    Related MCP tools

    Run your own MCP server? See who uses it and what to fix.

    Measure it with TrackMCP