- Remote HTTP Server: https://mcp.quotientai.co/mcp/
- Local Installation: Installable as a local MCP server using stdio transport
Tools
evaluate_tool_call
Evaluates whether an AI agent correctly used available tools in a conversation context.
Parameters:
available_tools
: Array of tool definitions with schemasmessage_history
: Array of conversation messages
score
:"correct"
,"incorrect_tool"
,"incorrect_parameter_names"
, or"incorrect_parameter_values"
reason
: Detailed explanation list
Example Usage
Input:Underlying Model
The evaluation is powered by the Limbic Tool Use Evaluator, a fine-tuned Qwen 2.5 0.5B model specifically designed for MCP function call evaluation.Integration Examples
Cursor IDE
You can use the Quotient MCP server in Cursor IDE by adding the following to your.cursor/mcp.json
:
.cursor/rules/evaluate-tool-call.mdc
to always apply the evaluate_tool_call
function after any agent tool call.
Amp
You can use the Quotient MCP server in Amp through both CLI and editor extension configurations. Configure the server in your editor extension settings or CLI configuration:CLI Configuration
The CLI configuration file location varies by operating system:- Windows:
%APPDATA%\amp\settings.json
- macOS:
~/.config/amp/settings.json
- Linux:
~/.config/amp/settings.json
Editor Extension Configuration
For editor extensions that support Amp, add the configuration to your editor settings (e.g.,.vscode/settings.json
). All settings use the amp.
prefix.
Then, add evaluation rules in your project directory as AGENT.md
:
Claude Desktop
Complete setup guide for integrating Quotient MCP with Claude Desktop using the stdio transport.Prerequisites
- Install
uv
:brew install uv
(macOS) or follow uv installation guide
Setup Steps
1. Clone the Repository- via UI: Settings → Developer → Local MCP → Edit Config
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
Important: Replace3. Configure Personal Preferences (Recommended) To automatically evaluate tool usage, add this rule to your Claude Desktop preferences:/absolute/path/to/your/quotient-mcp/server.py
with the full absolute path to yourserver.py
file.
- Go to Settings → Profile → Personal Preferences
- Copy and paste the following:
Claude Code
You can use the Quotient MCP server in Claude Code by adding the following to your project:evaluate_tool_call
function after any agent tool call.