loading…
Search for a command to run...
loading…
Agent Negotiation - MCP server providing AI-powered tools and automation by MEOK AI Labs
Agent Negotiation - MCP server providing AI-powered tools and automation by MEOK AI Labs
MCP server for agent negotiation mcp operations
Agent Negotiation MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
propose_deal |
Propose a deal between two agents with terms and pricing. |
evaluate_offer |
Evaluate an offer using negotiation theory (BATNA, ZOPA, Nash). |
counter_offer |
Submit a counter-offer on an existing negotiation. |
run_auction |
Run a simulated auction. Bids as JSON: [{"bidder": "A", "amount": 100}, ...] |
negotiation_status |
Get status of a negotiation or list all active negotiations. |
pip install meok-agent-negotiation-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"agent-negotiation": {
"command": "python",
"args": ["-m", "meok_agent_negotiation_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 5 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"agent-negotiation-mcp": {
"command": "npx",
"args": []
}
}
}