MCP Task Completion
The MCP task completion metric is a conversational metric that uses LLM-as-a-judge to evaluate how effectively an MCP based LLM agent accomplishes a task. Task Completion is a self-explaining LLM-Eval, meaning it outputs a reason for its metric score.
Required Arguments
To use the MCPTaskCompletionMetric, you'll have to provide the following arguments when creating a ConversationalTestCase:
turns-
mcp_servers
You will also need to provide mcp_tools_called, mcp_resources_called and mcp_prompts_called inside the turns whenever there is an MCP interaction in your agent's workflow. You can learn more about creating MCP test cases here.
You can learn more about how it is calculated here.
Usage
First, set the eval mode:
deepeval set-eval-mode llm # LLM-as-a-judge (default)
deepeval set-eval-mode hybrid # LLM extracts, Jev decides
deepeval set-eval-mode system_one # Jev-as-a-judge, no LLMThe MCPTaskCompletionMetric() can be used for end-to-end multi-turn evaluations of MCP based agents.
from deepeval.test_case import Turn, ConversationalTestCase, MCPServer
from deepeval.metrics import MCPTaskCompletionMetric
from deepeval import evaluate
convo_test_case = ConversationalTestCase(
turns=[Turn(role="...", content="..."), Turn(role="...", content="...")],
mcp_servers=[MCPServer(...)]
)
metric = MCPTaskCompletionMetric(threshold=0.5)
# To run metric as a standalone
# metric.measure(convo_test_case)
# print(metric.score, metric.reason)
evaluate(test_cases=[convo_test_case], metrics=[metric])There are NINE optional parameters when creating a MCPTaskCompletionMetric:
- [Optional]
threshold: a number representing the minimum passing threshold. Can also be set toNoneto run the metric in score-only mode. Defaulted to0.5. - [Optional]
model: a string specifying which of OpenAI's GPT models to use, OR any custom LLM model of typeDeepEvalBaseLLM. Defaulted togpt-5.4. - [Optional]
include_reason: a boolean which when set toTrue, will include a reason for its evaluation score. Defaulted toTrue. - [Optional]
strict_mode: a boolean which when set toTrue, enforces a binary metric score: 1 for perfection, 0 otherwise. It also overrides the current threshold and sets it to 1. Defaulted toFalse. -
[Optional]
async_mode: a boolean which when set toTrue, enables concurrent execution within themeasure()method. Defaulted toTrue. - [Optional]
verbose_mode: a boolean which when set toTrue, prints the intermediate steps used to calculate said metric to the console, as outlined in the How Is It Calculated section. Defaulted toFalse. - [Optional]
flaky: a boolean which when set toTrue, marks the metric as flaky. Defaulted toFalse. - [Optional]
system_one_model: the Jev model to use, as a string or aDeepEvalBaseSystemOneModel. Only used underhybridorsystem_oneeval_mode. Defaulted tojev-latest. - [Optional]
eval_mode:llm,hybridorsystem_one, choosing whether an LLM, Jev, or both judge. Defaulted to the configured eval mode (llmunless set).
As a standalone
You can also run the MCPTaskCompletionMetric on a single test case as a standalone, one-off execution.
...
metric.measure(convo_test_case)
print(metric.score, metric.reason)How Is It Calculated
You can change how the MCPTaskCompletionMetric is calculated by setting the eval mode.
LLM-as-a-judge
The MCPTaskCompletionMetric score is calculated according to the following equation:
The MCPTaskCompletionMetric converts turns into individual unit interactions and iterates over each interaction to evaluate whether the agent finished the task given by user for that interaction using an LLM.
Hybrid
Under the hybrid eval mode, the LLM still splits the conversation into tasks, but each task's completion score is rated by Jev, a System One model, on a four-level scale mapped onto 0 to 1. The equation and the LLM-written final reason are unchanged. If a Jev call fails, the LLM makes that decision instead.
Jev-as-a-judge
Under the system_one eval mode, Jev judges the whole metric in one request. It is sent the whole conversation (with the MCP calls in each turn) and asked three questions:
| Question | Type | Weight |
|---|---|---|
Every task a user message in turns asks for is completed by the assistant, as the user sees it in the assistant's replies (tool calls and their results are invisible to the user unless the assistant relays them). | Noul | 2 |
Everything the assistant tells the user it did or found in turns is backed by the MCP calls and results in turns; it does not claim results it never obtained. | Noul | 1 |
Across turns, how completely and correctly, as the user sees it, does the assistant complete the tasks the user asks for? (Not completed → Fully completed) | Score | 1 |
Each answer becomes a value in and the score is their weighted mean. No LLM is called: the reason lists each answer with its probability, and metric.confidence reports how decisive Jev was.
FAQs
MCP Use vs MCP Task Completion — usage quality or goal completion?
MCPTaskCompletionMetric scores the outcome (did the agent accomplish the task); MultiTurnMCPUseMetric scores the process (primitive and argument choices). An agent can use tools perfectly and still fail — they're complementary.How does it turn a multi-turn conversation into a completion score?
turns into unit interactions and uses an LLM to judge each one. Score = tasks satisfied / total interactions.Does the score explain why the task was marked incomplete?
metric.reason. Keep include_reason set to True (default) to see which interaction failed.What do I need to provide so it can judge task completion over MCP?
turns and mcp_servers, plus mcp_tools_called, mcp_resources_called, and mcp_prompts_called inside the relevant turns.