List available MCP servers for Ralph-On-Shelf
Lists available MCP servers and shows which are configured for Ralph-On-Shelf use.
/plugin marketplace add HarleyCoops/RalphOnAShelf/plugin install ralph-on-shelf@ralph-on-shelf-marketplaceList all available MCP (Model Context Protocol) servers that Ralph can connect to.
cd {{cwd}} && python -c "
from mcp_registry import list_servers_summary, get_all_servers
from mcp_selector import get_available_servers
print(list_servers_summary())
print()
print('Currently Available (auth configured):')
available = get_available_servers()
if available:
for name in available:
print(f' - {name}')
else:
print(' Only open/no-auth servers available')
print()
print('To use MCP servers with ROS:')
print(' /ros \"your task\" --mcp auto # Auto-select based on task')
print(' /ros \"your task\" --mcp exa-search # Use specific server')
print(' /ros \"your task\" --mcp none # Disable MCP')
"