We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ooples/mcp-console-automation'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
python.template•508 B
"""
Auto-generated test from recording: {{TEST_NAME}}
Description: {{DESCRIPTION}}
Generated by Console Automation MCP Test Framework
"""
{{IMPORTS}}
class Test{{TEST_NAME}}(unittest.TestCase):
"""{{DESCRIPTION}}"""
def setUp(self):
"""Set up test fixtures."""
{{SETUP}}
def tearDown(self):
"""Clean up after test."""
{{TEARDOWN}}
def test_recorded_scenario(self):
"""Execute recorded test scenario."""
{{STEPS}}
if __name__ == '__main__':
unittest.main()