Skip to main content
Glama
kdkiss

Stepstone Job Search MCP Server

by kdkiss
health.py714 B
#!/usr/bin/env python3 """ Simple health check script for the Stepstone MCP server """ import sys import json def health_check(): """Basic health check""" try: # Import main modules to verify they work import requests import bs4 import mcp return { "status": "healthy", "service": "stepstone-job-search", "version": "1.0.0" } except ImportError as e: return { "status": "unhealthy", "error": f"Missing dependency: {e}" } if __name__ == "__main__": result = health_check() print(json.dumps(result, indent=2)) sys.exit(0 if result["status"] == "healthy" else 1)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kdkiss/mcp-stepstone'

If you have feedback or need assistance with the MCP directory API, please join our Discord server