> For the complete documentation index, see [llms.txt](https://docs.eggubator.co/llms.txt).

# Set up Test API with Ruby

Install steps and an agent setup prompt for Ruby.

## Agent setup prompt

We want to integrate Test API into this codebase via API.

There's no official Ruby SDK, so use whatever HTTP client and conventions this codebase already uses for API calls. If there isn't an established pattern, a common choice for Ruby is Net::HTTP.

Authentication: send a bearer token in the `Authorization` header (`Authorization: Bearer <token>`).

The base URL is `https://google.com`.

You can see the available endpoints at https://docs.eggubator.co/llms.txt, or read the full OpenAPI spec at https://docs.eggubator.co/openapi.yaml. Adapt the auth and endpoints to your use case as needed.

# MCP Server

There's an MCP server at `https://docs.eggubator.co/mcp` exposing tools like `search_endpoints`, `get_endpoint`, and operation lookup. When you need specifics about an endpoint - parameters, status codes, examples - query the MCP server first; do not guess.

If the user has not yet connected the MCP server in their client, they can install it from the docs at `https://docs.eggubator.co`.
