Connects to rpcbind (the RPC portmapper service) to query and interact with registered RPC programs on a system. You get four tools: list all registered RPC programs on a host, get the port number for a specific program and version, look up which programs are registered at a given port, and ping to check if rpcbind is running. Reach for this when you need to discover or debug RPC services in a Unix environment, especially when working with NFS, NIS, or other RPC based network services. It's a straightforward wrapper around portmapper queries that brings RPC service discovery into Claude's toolset.
MCP server exposing rpcbind/RPC portmapper functionality.
pip install mcp-rpcbind
mcp-rpcbind
This will start the MCP server using stdio transport.
This package provides an MCP server that exposes rpcbind functionality for querying registered RPC services.
rpcbind_list_all: List all registered RPC programs on a hostrpcbind_get_port: Get port for a specific RPC program/versionrpcbind_get_program: Get programs registered at a specific portrpcbind_ping: Check if rpcbind is running# Install with dev dependencies
pip install -e ".[test,mcp]"
# Run tests
pytest
# Lint
ruff check src/ tests/
ruff format src/ tests/
# Type check
mypy src/
# Bump version
bumpversion patch # or minor/major
git tag v<version>
git push && git push --tags
mcp-name: io.github.daedalus/mcp-rpcbind