> ## Documentation Index
> Fetch the complete documentation index at: https://redop.useagents.site/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify with Local Clients

> Check that your Redop server is reachable from Inspector, Cursor, or other local MCP clients.

Once your server starts, verify one transport end to end before you add more features.

## Verify an HTTP server

Point your client at:

```txt theme={null}
http://localhost:3000/mcp
```

You should see an initialize request followed by capability or tool discovery requests such as `tools/list`.

## Verify a stdio server

Point your client at the command that starts the server:

```sh theme={null}
bun run src/index.ts
```

## Good first checks

* confirm the transport matches your client setup
* confirm the path is `/mcp` for HTTP
* confirm the process starts cleanly before the client connects
* confirm you can call one small tool like `ping`

## If you get stuck

* use `listen({ debug: true })` for HTTP transport logs
* keep the first server minimal until the client can connect
* avoid debugging auth, schemas, and middleware before transport works

## Next

* [Build a minimal HTTP server](/docs/tutorials/build-http-server)
* [Debug HTTP connections and sessions](/docs/guides/debug-http)
