We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sandraschi/tailscale-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
extract_tools.py•469 B
"""
Script to extract tools from portmanteau_tools.py into separate modules.
This script helps refactor the large portmanteau_tools.py file by extracting
each tool into its own module file.
"""
import ast
import re
from pathlib import Path
# This is a helper script - the actual extraction will be done manually
# to ensure proper formatting and imports
print("Tool extraction helper script")
print("This script identifies tool boundaries for manual extraction")