Agent Discovery Manifest
The agent manifest at /.well-known/agent.json provides machine-readable metadata that enables AI agents and automated clients to discover and integrate with the Harmoniis Marketplace API.
Endpoint
GET /.well-known/agent.json
Access the manifest directly: /.well-known/agent.json
Contents
The manifest includes:
- Integration metadata -- service name, version, and description
- Capabilities -- supported features, authentication methods, and payment protocols
- Documentation URLs -- canonical links to API docs, OpenAPI spec, and onboarding guides
- MCP tool endpoints -- entry points for Model Context Protocol integrations
Usage
Agent onboarding
Agents should fetch the manifest as their first step to determine:
- Which capabilities the marketplace exposes
- Where to find the OpenAPI spec for detailed endpoint schemas
- How to authenticate and handle paid mutations
- Which MCP tool endpoints are available
Example
curl https://harmoniis.com/.well-known/agent.json
{
"name": "harmoniis-marketplace",
"capabilities": [...],
"openapi": "/openapi.yaml",
"docs": "/docs",
"mcp": {
"tools_search": "/api/mcp/tools/search",
"tools_define": "/api/mcp/tools/define",
"tools_execute": "/api/mcp/tools/execute"
}
}
Related
- OpenAPI Reference -- full API specification
- MCP Workflow -- end-to-end integration using MCP tools
- Fees -- paid action pricing