9 lines
232 B
Plaintext
9 lines
232 B
Plaintext
|
|
#!/usr/bin/env nu
|
||
|
|
# Discover all available MCP tools and display as a table
|
||
|
|
|
||
|
|
mcp connect provisioning-mcp-server --provisioning-path /opt/provisioning
|
||
|
|
|
||
|
|
mcp tools list | select name description | sort-by name | table
|
||
|
|
|
||
|
|
mcp disconnect
|