We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/krsnmlna1/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
verify_tools.py•697 B
import sys
import os
# Add current directory to path so we can import tools
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from tools.system import get_system_status
from tools.shell import execute_command
from tools.audio import manage_volume
print("=== Testing System Status ===")
print(get_system_status())
print("\n=== Testing Shell Command (dir) ===")
print(execute_command("dir"))
print("\n=== Testing Audio (Get Volume) ===")
print(manage_volume("get"))
print("\n=== Testing Audio (Set Volume - Small change) ===")
# We won't blast the volume, just set it to a safe middle ground or current
print(manage_volume("set", level=20))
print("\n=== Verification Complete ===")