Skip to main content
Glama

Humanitarian Negotiation MCP Server

OPENAI_COMPLETE_SCHEMA.json12.1 kB
{ "openapi": "3.1.0", "info": { "title": "Humanitarian Negotiation MCP API", "version": "1.0.0", "description": "Complete API with all 5 humanitarian negotiation analysis tools" }, "servers": [ { "url": "https://humanitarian-mcp-904769523449.us-central1.run.app" } ], "paths": { "/api/v1/island-of-agreement": { "post": { "operationId": "createIslandOfAgreement", "summary": "Create Island of Agreement analysis", "description": "Maps contested vs. agreed facts and convergent vs. divergent norms", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": ["situation_description", "organization_name", "counterpart_name"], "properties": { "situation_description": { "type": "string", "description": "Description of negotiation (min 50 chars)", "minLength": 50 }, "organization_name": { "type": "string", "description": "Your organization name" }, "counterpart_name": { "type": "string", "description": "Counterpart name" }, "additional_context": { "type": "string", "description": "Additional context (optional)" }, "response_format": { "type": "string", "enum": ["markdown", "json"], "default": "markdown" }, "detail_level": { "type": "string", "enum": ["concise", "detailed"], "default": "detailed" } } } } } }, "responses": { "200": { "description": "Analysis completed" } } } }, "/api/v1/analyze-icebergs": { "post": { "operationId": "analyzeIcebergs", "summary": "Analyze Icebergs and Common Shared Space", "description": "Compares positions, reasoning, and motives between parties", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": [ "organization_name", "counterpart_name", "organization_positions", "organization_reasoning", "organization_motives", "counterpart_positions" ], "properties": { "organization_name": { "type": "string" }, "counterpart_name": { "type": "string" }, "organization_positions": { "type": "array", "items": {"type": "string"}, "minItems": 1, "maxItems": 15 }, "organization_reasoning": { "type": "array", "items": {"type": "string"}, "minItems": 1, "maxItems": 15 }, "organization_motives": { "type": "array", "items": {"type": "string"}, "minItems": 1, "maxItems": 15 }, "counterpart_positions": { "type": "array", "items": {"type": "string"}, "minItems": 1, "maxItems": 15 }, "counterpart_reasoning": { "type": "array", "items": {"type": "string"}, "maxItems": 15 }, "counterpart_motives": { "type": "array", "items": {"type": "string"}, "maxItems": 15 }, "response_format": { "type": "string", "enum": ["markdown", "json"], "default": "markdown" }, "detail_level": { "type": "string", "enum": ["concise", "detailed"], "default": "detailed" } } } } } }, "responses": { "200": { "description": "Analysis completed" } } } }, "/api/v1/analyze-stakeholders": { "post": { "operationId": "analyzeStakeholders", "summary": "Analyze and prioritize stakeholders", "description": "Characterizes and prioritizes stakeholders by Power, Urgency, Legitimacy, Position", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": ["context", "stakeholders"], "properties": { "context": { "type": "string", "description": "Context of negotiation", "minLength": 50 }, "stakeholders": { "type": "array", "minItems": 2, "maxItems": 50, "items": { "type": "object", "required": ["name", "power", "urgency", "legitimacy", "position"], "properties": { "name": { "type": "string" }, "power": { "type": "number", "minimum": 0, "maximum": 1 }, "urgency": { "type": "number", "minimum": 0, "maximum": 1 }, "legitimacy": { "type": "number", "minimum": 0, "maximum": 1 }, "position": { "type": "number", "minimum": -1, "maximum": 1 }, "influenced_by": { "type": "array", "items": {"type": "string"} } } } }, "response_format": { "type": "string", "enum": ["markdown", "json"], "default": "markdown" }, "detail_level": { "type": "string", "enum": ["concise", "detailed"], "default": "detailed" } } } } } }, "responses": { "200": { "description": "Analysis completed" } } } }, "/api/v1/leverage-influence": { "post": { "operationId": "leverageInfluence", "summary": "Develop influence tactics for target stakeholder", "description": "Develops tactics to influence a specific stakeholder. Automatically uses the latest stakeholder analysis if no analysis data is provided - just run stakeholder analysis first!", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": ["target_stakeholder_name"], "properties": { "target_stakeholder_name": { "type": "string", "description": "Name of the stakeholder to develop influence tactics for (e.g., 'Riverland Government')" }, "stakeholders_analysis_json": { "type": "object", "description": "Optional: Complete stakeholder analysis output. If not provided, automatically uses the latest from stakeholder analysis. Only include if you want to use a different analysis.", "properties": { "analysis_context": { "type": "string" }, "total_stakeholders": { "type": "integer" }, "stakeholders": { "type": "array", "items": { "type": "object", "properties": { "name": {"type": "string"}, "power": {"type": "number"}, "urgency": {"type": "number"}, "legitimacy": {"type": "number"}, "position": {"type": "number"}, "salience_score": {"type": "number"}, "priority_level": {"type": "string"}, "influenced_by": {"type": "array", "items": {"type": "string"}} } } }, "priority_summary": { "type": "object" } } }, "response_format": { "type": "string", "enum": ["markdown", "json"], "default": "markdown" } } } } } }, "responses": { "200": { "description": "Tactics developed successfully" } } } }, "/api/v1/leverage-influence-latest": { "post": { "operationId": "leverageInfluenceLatest", "summary": "Develop influence tactics using latest stakeholder analysis", "description": "Automatically uses the most recent stakeholder analysis! No need to copy-paste data. Just run stakeholder analysis first, then use this to develop tactics.", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "required": ["target_stakeholder_name"], "properties": { "target_stakeholder_name": { "type": "string", "description": "Name of the stakeholder to develop influence tactics for (e.g., 'Riverland Government')" }, "response_format": { "type": "string", "enum": ["markdown", "json"], "default": "markdown", "description": "Output format preference" } } } } } }, "responses": { "200": { "description": "Tactics developed successfully using latest analysis" } } } }, "/api/v1/guide": { "get": { "operationId": "getNegotiationGuide", "summary": "Get negotiation methodology guide", "description": "Returns comprehensive guide to all methodologies", "responses": { "200": { "description": "Guide retrieved" } } } } } }

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/escenariosparalatransformacion/humanitarian-mcp'

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