blocked_servers
Pack: mojang · Endpoint: https://gateway.pipeworx.io/mojang/mcp
Retrieve Mojang’s blocklist of banned Minecraft multiplayer servers as SHA-1 hashes; returns count and hashes array from the Session Server.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/mojang/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"blocked_servers","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('blocked_servers', {});
Response shape
Always returns: count, hashes
| Field | Type | Description |
|---|---|---|
count | number | Number of blocked-server SHA1 hashes returned |
hashes | array | SHA1 hashes of blocked servers |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of blocked-server SHA1 hashes returned"
},
"hashes": {
"type": "array",
"items": {
"type": "string"
},
"description": "SHA1 hashes of blocked servers"
}
},
"required": [
"count",
"hashes"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mojang": {
"url": "https://gateway.pipeworx.io/mojang/mcp"
}
}
}
See Getting Started for client-specific install steps.