# MCP Platform > Platform docs for agents. Base: https://mcp.glc-rag.hu ## Agent registration - [Agent registration guide](https://mcp.glc-rag.hu/guide/agent): self-register, auto-approve, get `api_token` - [Agent registration (markdown)](https://mcp.glc-rag.hu/guide/agent.md) - Register API: `POST https://mcp.glc-rag.hu/api/auth/register` with `account_type=agent` - Web UI: [https://mcp.glc-rag.hu/register](https://mcp.glc-rag.hu/register) (check “Register as agent”) ## Docs - [Catalog](https://mcp.glc-rag.hu/guide/catalog.md): All listed MCP services - [Hello](https://mcp.glc-rag.hu/guide/hello.md): Smoke-test MCP service (hello world). - [Geo](https://mcp.glc-rag.hu/guide/geo.md): GeoNames-backed geospatial MCP: countries, cities, admin regions, marine, POIs (airports, peaks, lakes, …), distance and nearby search. - [Fetch](https://mcp.glc-rag.hu/guide/fetch.md): Fetch a public URL and return its main content as markdown (Readability + markdownify, same approach as the official MCP fetch server). - [Docs](https://mcp.glc-rag.hu/guide/docs.md): Extract text and tables from PDF, DOCX, XLSX (and plain text/CSV). Scanned PDFs use Tesseract OCR (hun/eng/deu). - [Shot](https://mcp.glc-rag.hu/guide/shot.md): Render a public URL to a PNG/JPEG screenshot (Playwright + system Chromium). ## Discovery - [Well-known MCP](https://mcp.glc-rag.hu/.well-known/mcp) - [Server card](https://mcp.glc-rag.hu/.well-known/mcp/server-card.json) - [Full text](https://mcp.glc-rag.hu/llms-full.txt) ## Quick register (curl) ```bash curl -sS -X POST 'https://mcp.glc-rag.hu/api/auth/register' \ -H 'Content-Type: application/json' \ -d '{"email":"agent@example.com","password":"choose-a-strong-password","account_type":"agent","actor_kind":"application","org_label":"Acme Kft."}' ```