Skip to main content
Glama

R Econometrics MCP Server

MIT License
187
  • Linux
  • Apple
__init__.py797 B
"""Simple test fixtures for RMCP when needed.""" import json from pathlib import Path def load_r_fixture(fixture_name: str) -> dict: """ Load an R fixture from JSON file. Args: fixture_name: Name of the fixture file (without .json extension) Returns: The fixture data as a dictionary Raises: FileNotFoundError: If the fixture file doesn't exist Note: Most tests should use actual R execution instead of fixtures. This function is only for special cases where pre-captured outputs are needed. """ fixture_path = Path(__file__).parent / f"{fixture_name}.json" if not fixture_path.exists(): raise FileNotFoundError(f"Fixture not found: {fixture_path}") with open(fixture_path, "r") as f: return json.load(f)

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/finite-sample/rmcp'

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