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/mcpNothing 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
- 1Open Claude and click your name in the bottom-left corner.
- 2Choose Settings, then Connectors.
- 3Click Add custom connector.
- 4Paste the address you copied above into the URL field.
- 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.
youFind BIO-certified co-packers in southern Germany that can fill functional drinks.
youCheck this recipe for novel food issues: oat base, cocoa, ashwagandha, chia seeds.
youWhich 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/mcpOAuth 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/mcpStandard MCP over HTTP. No proprietary SDK required.