We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/baobab-tech/mcp-text-classifier'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
stop_server.sh•189 B
#!/bin/bash
echo "Stopping Text Classification MCP Server..."
# Find and kill the server process
pkill -f "text_classifier_server.py"
pkill -f "run_http_server.py"
echo "Server stopped."