We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nkapila6/mcp-meme-sticky'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on 2025-05-19 14:36:26 Monday
@author: Nikhil Kapila
"""
from urllib.parse import urlparse
def is_url(string):
try:
result = urlparse(string)
return all([result.scheme, result.netloc])
except ValueError:
return False