Skip to main content
Glama

ms-sentinel-mcp-server

by dstreefkerk
post_install.py716 B
#!/usr/bin/env python3 """Post-installation script to download DLLs.""" import subprocess import sys def main(): try: # Try importing the function directly # pylint: disable=import-outside-toplevel from download_dll import ( download_kusto_dll, ) download_kusto_dll() except ImportError: # Fall back to using the entry point try: subprocess.check_call([sys.executable, "-m", "download_dll"]) except subprocess.SubprocessError: print("Warning: Failed to download Kusto DLL after installation") print("You may need to run 'download-kusto-dll' manually") if __name__ == "__main__": main()

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/dstreefkerk/ms-sentinel-mcp-server'

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