We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sbarron/AmbianceMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
simple_python.py•331 B
# Simple Python test file for symbol extraction
def my_func(param: str) -> str:
"""Test function docstring."""
return f"Hello, {param}!"
class MyClass:
"""Test class docstring."""
def __init__(self, name: str):
self.name = name
def greet(self):
return f"Hi from {self.name}"