Fundamental Group — Public MCP Server

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.

Connection details

Endpointhttps://lavzugkeuethatxainhv.supabase.co/functions/v1/mcp
TransportStreamable HTTP (JSON-RPC 2.0)
AuthNone
Manifest/.well-known/mcp.json
AI plugin/.well-known/ai-plugin.json
OpenAPI/openapi.yaml
LLM context/llms.txt, /llms-full.txt
Contactinfo@fundamentalmedia.com

Tools exposed

ToolPurpose
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).

Quick test

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}}}'

Adding this MCP to an AI client

← Back to fundamentalgroup.net