Skip to main content
Glama
rogertheunissenmerge-oss

SommelierX Wine Pairing MCP

@sommelierx/mcp-server

Wine pairing intelligence for AI assistants. Connect Claude, Cursor, Windsurf, or any MCP-compatible client to a sommelier-grade pairing algorithm that matches wines to your ingredients, dishes, and recipes.

Quick Start

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "sommelierx": {
      "command": "npx",
      "args": ["@sommelierx/mcp-server"]
    }
  }
}

That is it. Ask Claude "What wine goes with grilled salmon?" and it will use SommelierX to answer.

With a Pro API key

For recipe extraction, group pairing, and score breakdowns:

{
  "mcpServers": {
    "sommelierx": {
      "command": "npx",
      "args": ["@sommelierx/mcp-server"],
      "env": {
        "SOMMELIERX_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

Cursor / Windsurf / Other MCP Clients

The same configuration works. Add the command and args to your client's MCP settings.

Related MCP server: aipaygen-mcp

Available Tools

Tool

What it does

Tier

pair_wine_with_ingredients

Find wines for a list of ingredients (e.g. "salmon, lemon, dill")

Free

pair_wine_with_meal

Find wines for a dish name (e.g. "risotto ai funghi")

Free

find_meals_for_wine

Find dishes that pair with a wine style (e.g. "Barolo")

Free

search_ingredients

Search the ingredient database

Free

search_meals

Search the meal database

Free

pair_wine_with_recipe_url

Extract ingredients from a recipe URL and pair wines

Pro

group_pairing

Find the best wine across multiple dishes (e.g. 3-course dinner)

Pro

Authentication

SommelierX supports two authentication methods. You can use either one -- no need to configure both.

Option 1: API Key (subscription)

Set the SOMMELIERX_API_KEY environment variable in your MCP client config. The key format is sk_live_.... You get a monthly call allowance based on your tier (Free / Pro / Enterprise).

{
  "mcpServers": {
    "sommelierx": {
      "command": "npx",
      "args": ["@sommelierx/mcp-server"],
      "env": {
        "SOMMELIERX_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

Get your API key at api.sommelierx.com.

Option 2: x402 Payment (pay per call)

No API key needed. Your AI agent pays per call using USDC on the Base network via the Coinbase x402 protocol. When a request lacks an API key, the server returns a 402 Payment Required response with a payment payload. x402-compatible agents handle this automatically.

This is ideal for:

  • AI agents that manage their own wallet

  • Pay-as-you-go usage without a subscription

  • Agent-to-agent commerce (no human in the loop)

Pricing (per call)

Tool

Price

Tier

pair_wine_with_meal

$0.01

Free

find_meals_for_wine

$0.01

Free

search_ingredients

$0.005

Free

search_meals

$0.005

Free

pair_wine_with_ingredients

$0.02

Pro

pair_wine_with_recipe_url

$0.02

Pro

group_pairing

$0.03

Pro

With an API key, calls are deducted from your tier allowance. With x402, each call is charged at the listed price.

Example Conversations

Basic pairing:

"What wine pairs well with salmon, asparagus, and hollandaise sauce?"

Reverse pairing:

"I have a bottle of Barolo. What should I cook?"

Recipe URL:

"What wine goes with this recipe? https://www.allrecipes.com/recipe/..."

Dinner party:

"I'm planning a 3-course dinner: Caesar salad, rack of lamb, and chocolate mousse. What single wine works for all courses?"

How It Works

  1. You ask your AI assistant a wine question

  2. The assistant calls the appropriate SommelierX tool

  3. The MCP server translates your input into structured API calls

  4. SommelierX's pairing algorithm (17 food DNA dimensions x 19 wine DNA dimensions) calculates matches

  5. You get scored wine recommendations based on real sommelier expertise

Ingredient Resolution

When you use pair_wine_with_ingredients, the server automatically resolves natural language ingredient names to database entries. The AI assistant does not need to know database IDs -- it passes ingredient names directly.

Configuration

Environment Variable

Required

Default

Description

SOMMELIERX_API_KEY

No

--

API key for Pro/Enterprise access. Without a key, free tier (50 calls/day).

SOMMELIERX_API_URL

No

https://api.sommelierx.com

API base URL.

SOMMELIERX_LANGUAGE

No

en

Default language for results (en, nl, fr, de, es, it).

API Tiers

Tier

Daily Limit

Per-Minute Limit

Features

Free

50 calls

2/min

Basic pairing, search, ingredient/meal lookup

Pro ($49/mo)

500 calls

20/min

+ Recipe URL extraction, group pairing, score breakdowns

Enterprise

10,000 calls

100/min

+ Custom limits, SLA

Get your API key at api.sommelierx.com

API Documentation

Full API documentation is available at docs.sommelierx.com.

The OpenAPI specification is served at https://api.sommelierx.com/api/v1/openapi.json.

Development

npm install
npm run build
npm run dev       # development mode with hot reload
npm run typecheck # type checking without emit

Requirements

  • Node.js >= 18.0.0

License

MIT

Available Tools

7 tools
find_meals_for_wineA

Find dishes that pair well with a specific wine type or style. Provide a wine name (e.g. "Barolo", "Chardonnay", "Rioja") and get the top 10 matching dishes with scores. Best for: "I have a Barolo, what should I cook?" | Auth: API key (Bearer sk_live_...) or x402 payment (USDC on Base) | Price: $0.01/call

ParametersJSON Schema
NameRequiredDescriptionDefault
wine_typeYesName of the wine type or style (e.g. "Barolo", "Chardonnay", "Rioja Reserva")
languageNoLanguage code for results (e.g. "en", "nl", "fr"). Defaults to "en".

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses auth methods (API key or USDC payment) and pricing ($0.01/call). As a read operation with no annotations, description provides useful behavioral context beyond schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Very concise: two sentences plus auth/pricing line. Front-loaded with purpose, no redundant phrases. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Complete for a simple two-parameter tool with no output schema: explains input, output, auth, and pricing. Sibling names provide additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 100% coverage with descriptions. Description adds minor context (examples, default language) but core info is already in schema. Baseline 3 due to high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it finds dishes pairing with a specific wine, with examples ('Barolo', 'Chardonnay') and output details (top 10 dishes with scores). Differentiates from siblings like 'pair_wine_with_ingredients' by focusing on dishes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Includes a 'Best for' example (`I have a Barolo, what should I cook?`) indicating when to use. No explicit alternatives or when-not statements, but context implies it's for dish matching, not ingredient or meal pairing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

group_pairingA

Find the best wine that pairs well with multiple dishes at once. Provide 2-10 meal names and get wines that score well across all of them. Requires Pro tier. Best for: "What single wine works for a 3-course dinner?" | Auth: API key (Bearer sk_live_...) or x402 payment (USDC on Base) | Price: $0.03/call (PRO)

ParametersJSON Schema
NameRequiredDescriptionDefault
meal_namesYesList of meal/dish names (e.g. ["Caesar salad", "grilled lamb", "chocolate mousse"])
languageNoLanguage code for results (e.g. "en", "nl", "fr"). Defaults to "en".

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully covers behavioral traits: auth requirements (API key or x402), pricing ($0.03/call), tier requirement (Pro), and input constraints (2-10 meals). No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise, packing purpose, usage, requirements, and pricing into a few sentences. It is front-loaded with the primary purpose, making it efficient for an AI agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description does not specify the return format (e.g., list of wines with scores). However, it covers all key operational details (inputs, auth, pricing) and is adequate for a tool that likely returns similar structure to siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already describes parameters. The description adds value by stating the input range ('2-10 meal names') and providing an example, which aids understanding beyond the schema's formal description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb and resource: 'Find the best wine that pairs well with multiple dishes at once.' It distinguishes from siblings by focusing on multiple dishes, contrasting with single-dish tools like pair_wine_with_meal.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage context, including a best-use example ('What single wine works for a 3-course dinner?') and requirements (Pro tier, auth methods, pricing). It lacks explicit when-not-to-use guidance, but the context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pair_wine_with_ingredientsA

Find the best wine pairings for a list of ingredients. Provide ingredient names in natural language (e.g. "salmon", "lemon", "dill") and get the top 5 wine matches with scores. The server automatically resolves ingredient names to the database. Best for: "What wine goes with these ingredients?" | Auth: API key (Bearer sk_live_...) or x402 payment (USDC on Base) | Price: $0.02/call (PRO)

ParametersJSON Schema
NameRequiredDescriptionDefault
ingredientsYesList of ingredient names (e.g. ["salmon", "lemon", "dill"])
languageNoLanguage code for results (e.g. "en", "nl", "fr"). Defaults to "en".

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations, so description carries burden. It discloses auth requirements, pricing, and ingredient name resolution. But lacks details on error handling, output structure beyond 'top 5 wine matches with scores', and limitations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Concise, front-loaded with purpose, includes essential auth and pricing info in few sentences. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations or output schema, description covers purpose, input format, auth, and cost. Could elaborate on output structure and edge cases, but adequate for a straightforward tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all parameters with descriptions. Description adds value by explaining natural language input and automatic resolution, plus example format and default language.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'find' and resource 'wine pairings' for a list of ingredients. It distinguishes from siblings like pair_wine_with_meal and pair_wine_with_recipe_url by specifying ingredients as input.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit use case: 'Best for: "What wine goes with these ingredients?"' and mentions auth and pricing. However, it does not mention when not to use or alternatives among sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pair_wine_with_mealA

Find the best wine pairings for a specific dish or meal. Provide the meal name (e.g. "risotto ai funghi", "grilled salmon") and get the top 5 wine matches. The server searches for the meal in the database. Best for: "What wine goes with this dish?" | Auth: API key (Bearer sk_live_...) or x402 payment (USDC on Base) | Price: $0.01/call

ParametersJSON Schema
NameRequiredDescriptionDefault
meal_nameYesName of the dish or meal (e.g. "risotto ai funghi", "grilled salmon")
languageNoLanguage code for results (e.g. "en", "nl", "fr"). Defaults to "en".

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Since no annotations are provided, the description takes on the full burden of behavioral disclosure. It details authentication methods (API key or x402 payment) and cost ($0.01/call), and notes that the server searches the database. These go beyond the schema and help the agent understand side effects and requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is relatively concise with two main sentences plus a line for 'Best for', auth, and price. It efficiently communicates the core functionality, though the extra details could be separated for readability.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simplicity of the tool (2 parameters, no output schema), the description covers purpose, usage, auth, and cost. It does not describe the output format in detail, but the phrase 'top 5 wine matches' provides enough context for the agent to anticipate the result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds example values for parameters but does not provide additional semantic depth beyond what the schema already specifies (e.g., language defaults to 'en').

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Find the best wine pairings for a specific dish or meal.' It provides concrete examples ('risotto ai funghi', 'grilled salmon') and specifies the output ('top 5 wine matches'). This distinguishes it from siblings like 'pair_wine_with_ingredients' which pair by ingredients, not meal name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description includes a 'Best for' section ('What wine goes with this dish?') that clarifies the primary use case. It does not explicitly list when not to use the tool or mention alternatives, but the provided context is sufficient for correct usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pair_wine_with_recipe_urlA

Extract ingredients from a recipe URL and find wine pairings. Provide a URL to a recipe page and get the recipe name, extracted ingredients, and top 5 wine matches. Requires Pro tier. Best for: "What wine goes with this recipe?" | Auth: API key (Bearer sk_live_...) or x402 payment (USDC on Base) | Price: $0.02/call (PRO)

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesURL of a recipe page (e.g. "https://www.allrecipes.com/recipe/...")
languageNoLanguage code for results (e.g. "en", "nl", "fr"). Defaults to "en".

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description discloses authentication (API key or x402 payment), pricing ($0.02/call), Pro requirement, and expected outputs (recipe name, ingredients, top 5 wine matches). It could mention error handling but overall provides sufficient behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is relatively concise, front-loading the purpose in one sentence and then providing additional details. The line about authentication and price is useful but could be better formatted. Still efficient overall.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description explains the return format. It covers authentication, pricing, and input requirements. The tool has only 2 parameters, so the description is adequately complete, though it lacks error handling details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with both parameters already described in the schema. The description adds no new semantic value beyond restating the URL and language expectations, so a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool takes a recipe URL, extracts ingredients, and finds wine pairings, listing specific outputs. It distinguishes from sibling tools like 'pair_wine_with_ingredients' and 'find_meals_for_wine'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a use case ('Best for: What wine goes with this recipe?') and notes Pro tier requirement and pricing. However, it does not explicitly specify when not to use it or mention alternatives for different scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_ingredientsA

Search for ingredients in the SommelierX database. Returns ingredient names, IDs, and groups. Use this to discover available ingredients before using pair_wine_with_ingredients. Best for: "What mushroom ingredients are available?" | Auth: API key (Bearer sk_live_...) or x402 payment (USDC on Base) | Price: $0.005/call

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch term for ingredients (e.g. "mushroom", "cheese", "salmon")
languageNoLanguage code for results (e.g. "en", "nl", "fr"). Defaults to "en".

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description bears full burden. It discloses read-like behavior (search) and mentions auth and pricing, but does not cover pagination, rate limits, or exact side effects. Adequate but not exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences plus succinct best-use and auth/pricing lines. No filler, front-loaded with purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Missing output schema, but description mentions return fields (names, IDs, groups). For a simple search tool with few parameters, this is largely sufficient. Could benefit from hinting at result format.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema has 100% coverage with descriptions for both parameters. Description adds little beyond repeating parameter examples (e.g., 'mushroom'). Baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it searches for ingredients in a specific database and returns names, IDs, and groups. It differentiates itself from sibling tools like pair_wine_with_ingredients by positioning itself as a discovery tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides a best-use example ('What mushroom ingredients are available?') and explicitly directs to use before pair_wine_with_ingredients. Mentions authentication and pricing, but lacks explicit guidance on when not to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_mealsA

Search for meals and dishes in the SommelierX database. Returns meal names, IDs, and descriptions. Use this to discover available meals before using pair_wine_with_meal or group_pairing. Best for: "What pasta dishes are in the database?" | Auth: API key (Bearer sk_live_...) or x402 payment (USDC on Base) | Price: $0.005/call

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch term for meals/dishes (e.g. "risotto", "steak", "sushi")
languageNoLanguage code for results (e.g. "en", "nl", "fr"). Defaults to "en".

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Given no annotations, description discloses authentication (API key or x402 payment) and pricing ($0.005/call). Mentions return fields. Lacks details on pagination or limits, but adequate for a simple search tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with purpose, then usage context, then best-for/auth/pricing. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers purpose, return fields, usage context, authentication, pricing, and an example. No output schema needed; description is complete for a simple search tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% so baseline is 3. Description adds example query context but does not significantly enhance parameter meaning beyond schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states verb (Search), resource (meals/dishes in SommelierX database), and return fields (names, IDs, descriptions). Provides example query. Explicitly distinguishes from sibling tools by mentioning usage before pair_wine_with_meal or group_pairing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use: 'Use this to discover available meals before using pair_wine_with_meal or group_pairing.' Provides best-for example. Does not explicitly state when not to use, but context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a clear and distinct purpose: three pair wine with different inputs (meal, ingredients, recipe URL), one finds meals for a wine, one does group pairing, and two are search tools for discovering meals and ingredients. There is no confusing overlap.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (e.g., pair_wine_with_meal, search_ingredients). However, there is some inconsistency: 'find_meals_for_wine' and 'group_pairing' use different verbs, though they remain descriptive. Overall, the naming is clear.

Tool Count5/5

With 7 tools, the server covers all core wine pairing use cases without being bloated. The count is well-scoped for its domain, earning each tool its place.

Completeness5/5

The tool set covers the full range of pairing needs: wine-to-dish, dish-to-wine, ingredients-to-wine, recipe-to-wine, and multi-dish group pairing, plus discovery. No obvious gaps for its intended purpose.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    22 MCP tools for AI agents: crypto prices and trading signals (53 coins), stock prices and company financials, forex rates and conversion, and web scraping with AI summaries. All powered by x402 USDC micropayments on Base. $0.01-$0.25 per request.
    22
    19
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    250+ AI-powered MCP tools: research, write, code, translate, scrape, sentiment, vision, RAG, agent memory, marketplace, trading signals, and more. 15 models across 7 providers. Pay-per-use via API key or x402 USDC micropayments.
    2
    MIT
  • A
    license
    C
    quality
    B
    maintenance
    One MCP install that lets your AI agents discover and pay (x402 micropayments, USDC on Base + Solana) for 66 specialized real-time intelligence APIs - finance, crypto, insurance, immigration, legal, markets and more. 68 tools, pey-per-query, no subscription.
    69
    30
    3
    Apache 2.0
  • A
    license
    B
    quality
    C
    maintenance
    Exposes 25 paid API endpoints as MCP tools for AI agents, with payments in USDC on Base mainnet via the x402 protocol, enabling tasks like web search, company intelligence, and crypto research.
    25
    68
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rogertheunissenmerge-oss/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server