Skip to main content
Glama

Tribal Knowledge Service

by agentience
test_app.py614 B
"""Tests for the main application.""" import pytest from fastapi.testclient import TestClient from mcp_server_tribal.app import app @pytest.fixture def client(): """Create a test client for the API.""" return TestClient(app) def test_read_main(client): """Test the root endpoint.""" response = client.get("/") assert response.status_code == 200 assert response.json()["name"] == "Tribal" def test_health_check(client): """Test the health check endpoint.""" response = client.get("/health") assert response.status_code == 200 assert response.json()["status"] == "ok"

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/agentience/tribal_mcp_server'

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