Skip to main content
Glama

NSAF MCP Server

run_tests.py762 B
#!/usr/bin/env python """ Script to run tests for the NSAF prototype. """ import os import sys import pytest def main(): """ Run tests for the NSAF prototype. """ print("=" * 80) print("Running tests for the NSAF prototype") print("=" * 80) # Get the directory of this script script_dir = os.path.dirname(os.path.abspath(__file__)) # Change to the script directory os.chdir(script_dir) # Run the tests args = ["-v", "tests/"] # Add any additional arguments passed to this script args.extend(sys.argv[1:]) # Run pytest with the arguments exit_code = pytest.main(args) # Return the exit code return exit_code if __name__ == "__main__": sys.exit(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/ariunbolor/nsaf-mcp-server'

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