MCP Now
Discourse

Discourse

by AshDevFr
GitHub

A MCP server to search Discourse posts on a Discourse forum.

discourse
docker
search
post
build

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
    • Search posts on a Discourse forum
    • Input: query (string)
    • Returns an array of post objects

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

Docker

1{ 2 "mcpServers": { 3 "discourse": { 4 "command": "docker", 5 "args": [ 6 "run", 7 "-i", 8 "--rm", 9 "-e", "DISCOURSE_API_URL=https://try.discourse.org", 10 "-e", "DISCOURSE_API_KEY=1234", 11 "-e", "DISCOURSE_API_USERNAME=ash", 12 "ashdev/discourse-mcp-server" 13 ] 14 } 15 } 16}

NPX

1{ 2 "mcpServers": { 3 "discourse": { 4 "command": "npx", 5 "args": [ 6 "-y", 7 "@ashdev/discourse-mcp-server" 8 ], 9 "env": { 10 "DISCOURSE_API_URL": "https://try.discourse.org", 11 "DISCOURSE_API_KEY": "1234", 12 "DISCOURSE_API_USERNAME": "ash" 13 } 14 } 15 } 16}

Build

Docker build:

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