activitypub mcp for VS Code
io.github.cameronrye/activitypub-mcp
Read-only-by-default MCP server: let LLMs explore the Fediverse — Mastodon, Misskey, Pleroma.
client:VS Code
transport:stdio
runtime:npm
Install activitypub mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "activitypub-enable-writes",
"description": "ACTIVITYPUB_ENABLE_WRITES",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"activitypub-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"activitypub-mcp"
],
"env": {
"ACTIVITYPUB_ENABLE_WRITES": "${input:activitypub-enable-writes}",
"LOG_LEVEL": "${input:log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs