One address. One sign-in. Done.

There is nothing to download. You are adding fmcg.network as aconnector inside the AI assistant you already use.

Step 1: copy this address

https://mcp.fmcg.network/mcp

Nothing else is needed. No API key, no password to create here. You will sign in through your own AI client.

Step 2: pick the assistant you use

Claude

Claude Desktop or claude.ai

  1. 1Open Claude and click your name in the bottom-left corner.
  2. 2Choose Settings, then Connectors.
  3. 3Click Add custom connector.
  4. 4Paste the address you copied above into the URL field.
  5. 5Click Add, then sign in when the browser window appears.

Menu moved? If you do not see “Connectors”, look for “Integrations” or “MCP servers” in the same Settings menu.

Note: Custom connectors require a paid Claude plan.

Step 3: ask your first question

Type this into your assistant

You never have to name a capability or learn a command. Ask normally. your assistant picks the right one.

you

Find BIO-certified co-packers in southern Germany that can fill functional drinks.

you

Check this recipe for novel food issues: oat base, cocoa, ashwagandha, chia seeds.

you

Which contract manufacturers in DACH are IFS certified and do small batches?

For developers & agents

Standard MCP over HTTP with OAuth 2.1 (PKCE + Dynamic Client Registration). Discovery follows Agentic Resource Discovery.

Claude Code

claude mcp add --transport http fmcg https://mcp.fmcg.network/mcp

OAuth runs on first tool call. No API key to manage.

Cursor

{
  "mcpServers": {
    "fmcg": {
      "url": "https://mcp.fmcg.network/mcp"
    }
  }
}

Add to .cursor/mcp.json in your project, or the global config.

VS Code / GitHub Copilot

{
  "servers": {
    "fmcg": {
      "type": "http",
      "url": "https://mcp.fmcg.network/mcp"
    }
  }
}

Add to .vscode/mcp.json in your workspace.

Any MCP client

# Agentic discovery catalog
curl https://fmcg.network/.well-known/ai-catalog.json

# Capability registry (public JSON)
curl https://mcp.fmcg.network/capabilities

# OAuth discovery
curl https://mcp.fmcg.network/.well-known/oauth-protected-resource

# MCP endpoint (OAuth 2.1 + PKCE + Dynamic Client Registration)
https://mcp.fmcg.network/mcp

Standard MCP over HTTP. No proprietary SDK required.