Skip to main content
Glama

Enrichment MCP Server

by synackpwn
base.py712 B
from typing import Any, Dict class BaseService: """All supported enrichment services derive from this base model. Args: host (str): The host or default URL. method (str, optional): The HTTP method to use. Defaults to get. body: (dict, optional): A body dict. Defaults to dict. endpoint: (str, optional): The endpoint of the url. Defaults to str. headers: (Dict[str, str], optional): Headers for the request. Defaults are {'accept': 'application/json'}. """ host: str = "" method: str = "get" body: Dict[str, Any] = {} endpoint: str = "" headers: Dict[str, str] = { 'accept': 'application/json', }

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/synackpwn/enrichment-mcp'

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