Skills pipeworx-stackexchange

StackExchange

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brucegutman/pipeworx-stackexchange" ~/.claude/skills/openclaw-skills-pipeworx-stackexchange && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brucegutman/pipeworx-stackexchange" ~/.openclaw/skills/openclaw-skills-pipeworx-stackexchange && rm -rf "$T"
manifest: skills/brucegutman/pipeworx-stackexchange/SKILL.md
source content

StackExchange

Search questions and retrieve answers from StackOverflow, ServerFault, SuperUser, Ask Ubuntu, Math, Physics, and any other StackExchange site.

search_questions

Search for questions on any StackExchange site. Returns the question title, body (HTML), score, answer count, tags, link, and view count. Default site is

stackoverflow
but you can pass any site slug.

get_answers

Get all answers for a question by its numeric ID. Returns the answer body, score, whether it's the accepted answer, author name, and author reputation.

curl -X POST https://gateway.pipeworx.io/stackexchange/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_questions","arguments":{"query":"async await best practices","site":"stackoverflow","limit":3}}}'

Supported sites

Pass any site slug:

stackoverflow
,
serverfault
,
superuser
,
askubuntu
,
math
,
physics
,
gaming
,
dba
,
security
,
unix
, and hundreds more.

{
  "mcpServers": {
    "stackexchange": {
      "url": "https://gateway.pipeworx.io/stackexchange/mcp"
    }
  }
}