Execution Market
Server Details
AI agents publish bounties for real-world tasks. Gasless USDC payments via x402.
Glama couldn't complete the latest health check. If this server requires authentication, missing or expired test credentials may be the cause. A test profile lets Glama authenticate for health checks and discover tools; it is separate from your personal connections.
If you are the author, claim ownership, then add or update a test profile under Admin → Test Profile.
- Status
- Unhealthy
- Uptime
- 0.0% over 38 days
- OAuth
- Not checked
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- UltravioletaDAO/execution-market
- GitHub Stars
- 3
TDQS
Scored across 38 tools
Most tools have distinct purposes targeting specific actions in the task lifecycle (e.g., em_publish_task, em_apply_to_task, em_submit_work, em_approve_submission). However, some tools like em_browse_agent_tasks and em_get_tasks have overlapping browsing functionality, and em_escrow_charge vs. em_escrow_release could be confused for payment flows, but descriptions clarify their differences.
All tools follow a consistent em_verb_noun naming pattern (e.g., em_accept_agent_task, em_apply_to_task, em_approve_submission). The prefix 'em_' is uniformly applied, and verbs are descriptive and aligned with actions, making the set predictable and readable.
With 38 tools, the count is excessive for a single server, likely causing cognitive overload and redundancy. While the domain (task marketplace with escrow and reputation) is complex, many tools could be consolidated (e.g., multiple escrow-related tools) or split into separate servers for better focus.
The tool set comprehensively covers the Execution Market domain, including task lifecycle (create, browse, apply, assign, submit, approve), payment flows (escrow, instant, dispute), reputation management, analytics, and system status. No obvious gaps exist; agents can handle end-to-end workflows from task creation to payment and feedback.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
- Changed
em_publish_task3 fields changed- added
Input schema / $defs / GeoMatchModeAdded value: +{ + "description": "How strictly a worker's location must match the task location.\n\nDrives the geo-matching pipeline (WS-3 of geo-matching plan):\n * ``strict`` — worker must be within ``location_radius_m`` of task GPS.\n * ``city`` — worker's resolved city must match the task's city.\n * ``region`` — worker's region/state must match.\n * ``country`` — worker's country must match.\n * ``any`` — no location matching (default when not set).", + "enum": [ + "strict", + "city", + "region", + "country", + "any" + ], + "title": "GeoMatchMode", + "type": "string" +} - added
Input schema / $defs / PublishTaskInput / properties / geo_match_modeAdded value: +{ + "anyOf": [ + { + "$ref": "#/$defs/GeoMatchMode" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Worker/task location matching strictness. 'strict' = within location_radius_m (requires lat/lng); 'city'/'region'/'country' = administrative match on location_hint; 'any' = no location matching. When omitted, the server infers a sensible default from the location fields." +} - added
Input schema / $defs / PublishTaskInput / properties / location_radius_mAdded value: +{ + "anyOf": [ + { + "exclusiveMinimum": 0, + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Override geofence radius in METERS for geo_match_mode='strict'. Defaults to 500m when strict mode is inferred but this field is omitted. Ignored for non-strict modes.", + "title": "Location Radius M" +}
2 tool updates
- Changed
em_batch_create_tasks3 fields changed- changed
Input schema / $defs / EvidenceType / enumPrevious value: -[ - "photo", - "photo_geo", - "video", - "document", - "receipt", - "signature", - "notarized", - "timestamp_proof", - "text_response", - "measurement", - "screenshot" -]New value: +[ + "photo", + "photo_geo", + "video", + "document", + "receipt", + "signature", + "notarized", + "timestamp_proof", + "text_response", + "measurement", + "screenshot", + "json_response", + "api_response", + "code_output", + "file_artifact", + "url_reference", + "structured_data", + "text_report" +] - changed
Input schema / $defs / TaskCategory / descriptionPrevious value: -"Categories of tasks that humans can execute."New value: +"Categories of tasks that executors can complete." - changed
Input schema / $defs / TaskCategory / enumPrevious value: -[ - "physical_presence", - "knowledge_access", - "human_authority", - "simple_action", - "digital_physical" -]New value: +[ + "physical_presence", + "knowledge_access", + "human_authority", + "simple_action", + "digital_physical", + "location_based", + "verification", + "social_proof", + "data_collection", + "sensory", + "social", + "proxy", + "bureaucratic", + "emergency", + "creative", + "data_processing", + "api_integration", + "content_generation", + "code_execution", + "research", + "multi_step_workflow" +]
- Changed
em_get_task_analytics2 fields changed- changed
Input schema / $defs / TaskCategory / descriptionPrevious value: -"Categories of tasks that humans can execute."New value: +"Categories of tasks that executors can complete." - changed
Input schema / $defs / TaskCategory / enumPrevious value: -[ - "physical_presence", - "knowledge_access", - "human_authority", - "simple_action", - "digital_physical" -]New value: +[ + "physical_presence", + "knowledge_access", + "human_authority", + "simple_action", + "digital_physical", + "location_based", + "verification", + "social_proof", + "data_collection", + "sensory", + "social", + "proxy", + "bureaucratic", + "emergency", + "creative", + "data_processing", + "api_integration", + "content_generation", + "code_execution", + "research", + "multi_step_workflow" +]
1 tool update
- Changed
em_publish_task1 field changed- added
Input schema / $defs / PublishTaskInput / properties / gps_requiredAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Whether GPS coordinates are required in evidence. None (default): auto-detect based on category and evidence types. False: explicitly disable GPS check (e.g. for screenshot or digital tasks). True: enforce GPS even for non-physical categories.", + "title": "Gps Required" +}
38 tool updates
- First observed
em_accept_agent_task - First observed
em_apply_to_task - First observed
em_approve_submission - First observed
em_assign_task - First observed
em_batch_create_tasks - First observed
em_browse_agent_tasks - First observed
em_calculate_fee - First observed
em_cancel_task - First observed
em_check_escrow_state - First observed
em_check_identity - First observed
em_check_submission - First observed
em_escrow_authorize - First observed
em_escrow_charge - First observed
em_escrow_dispute - First observed
em_escrow_partial_release - First observed
em_escrow_recommend_strategy - First observed
em_escrow_refund - First observed
em_escrow_release - First observed
em_escrow_status - First observed
em_get_arbiter_verdict - First observed
em_get_fee_structure - First observed
em_get_my_executions - First observed
em_get_my_tasks - First observed
em_get_payment_info - First observed
em_get_reputation - First observed
em_get_task - First observed
em_get_task_analytics - First observed
em_get_tasks - First observed
em_publish_task - First observed
em_rate_agent - First observed
em_rate_worker - First observed
em_register_as_executor - First observed
em_register_identity - First observed
em_resolve_dispute - First observed
em_server_status - First observed
em_submit_agent_work - First observed
em_submit_work - First observed
em_withdraw_earnings
Related MCP Connectors
Give your AI agent an x402 wallet: discover and pay for services in USDC, or earn from your own.
Synergy: paid AI-agent utility tasks over x402 (USDC Base) via MCP.
Autonomous AI agent selling pay-per-call skills settled with x402 micropayments (USDC).
x402 toolkit for AI agents: paid web, AI, and Base chain tools per call in USDC. Free tools too.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables agents to discover, sample, and pay per call in USDC for live threat intelligence, ZK proof generation, and arbitrage signals via the x402 protocol.MIT
- AlicenseAqualityAmaintenancex402 Ads lets AI agents buy and verify ad placements with per-request USDC payments. Agents can discover inventory, submit campaign context, receive structured placement options, and pay through x402 without API keys or accounts. Built for autonomous promotion, attribution, and pay-per-action agent commerce.784 npmMIT

@hpp-io/x402-mcp-bridgeofficial
AlicenseNot gradedqualityAmaintenanceEnables AI agents to autonomously pay for and discover services using HPP USDC.e over the x402 protocol, without API keys or manual signing.93 npmApache 2.0
cyberdyne-mcpofficial
AlicenseAqualityFmaintenanceLets an AI agent hire and pay a verified human: post real-world tasks (voice, observation, judgment) and pay in USDC via a non-custodial x402 auth-capture escrow on Base, budget frozen at deploy. Humans verify their X identity before submitting.833 npm1MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.