Skip to main content
Glama

Employee Management MCP Server

by y735832496
main.py521 B
#!/usr/bin/env python3 """ 员工管理系统 MCP Server 基于Model Context Protocol的员工管理系统API代理服务器 """ import asyncio import sys import os # 添加src目录到Python路径 sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src')) from src.server import main if __name__ == "__main__": try: asyncio.run(main()) except KeyboardInterrupt: print("\n服务器已停止") except Exception as e: print(f"服务器启动失败: {e}") sys.exit(1)

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/y735832496/mcp-server'

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