Fundamental Group publishes a public Model Context Protocol (MCP) server so AI assistants (ChatGPT, Claude, Cursor and any MCP-compatible client) can retrieve factual company information and published website content. No authentication is required.
| Endpoint | https://lavzugkeuethatxainhv.supabase.co/functions/v1/mcp |
|---|---|
| Transport | Streamable HTTP (JSON-RPC 2.0) |
| Auth | None |
| Manifest | /.well-known/mcp.json |
| AI plugin | /.well-known/ai-plugin.json |
| OpenAPI | /openapi.yaml |
| LLM context | /llms.txt, /llms-full.txt |
| Contact | info@fundamentalmedia.com |
| Tool | Purpose |
|---|---|
about_fundamental_group |
Factual overview of Fundamental Group: legal name, founding year, headquarters, global offices, sectors served, divisions and headline statistics. Takes no arguments. |
search_website_pages |
Keyword search across published pages on fundamentalgroup.net. Returns titles, slugs
and meta descriptions. Arguments: query (string, required),
limit (integer, optional, default 20). |
get_website_page |
Fetch a single published page by slug, including SEO metadata and content blocks.
Arguments: slug (string, required, e.g. about or
divisions/fundamental-media). |
List the available tools:
curl -X POST https://lavzugkeuethatxainhv.supabase.co/functions/v1/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call about_fundamental_group:
curl -X POST https://lavzugkeuethatxainhv.supabase.co/functions/v1/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call",
"params":{"name":"about_fundamental_group","arguments":{}}}'
Search published pages:
curl -X POST https://lavzugkeuethatxainhv.supabase.co/functions/v1/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call",
"params":{"name":"search_website_pages","arguments":{"query":"alphix","limit":5}}}'
mcp.json as a Streamable HTTP server pointing at the endpoint URL.