From 5795c64419812c50a5fad1cde09cf442f90a1b2b Mon Sep 17 00:00:00 2001 From: Miguel Angel Cabrera Minagorri Date: Mon, 22 Jun 2026 11:47:11 -0700 Subject: [PATCH 1/2] add tiza to reference implementations Signed-off-by: Miguel Angel Cabrera Minagorri --- docs/ref_implementations.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/docs/ref_implementations.md b/docs/ref_implementations.md index 43fc37f..cd93b65 100644 --- a/docs/ref_implementations.md +++ b/docs/ref_implementations.md @@ -69,3 +69,30 @@ curl -sS 'https://ai-catalog.outshift.io/v1/agents?filter=type%3Dapplication%2Fa curl -sS 'https://ai-catalog.outshift.io/v1/agents?filter=type%3Dapplication%2Fmcp-server-card%2Bjson' \ | jq -r '.results[] | {displayName, identity: .trustManifest.identity, identityType: .trustManifest.identityType, cardUrl: .data.card_data.url} | @json' ``` + +## Tiza + +[Tiza](https://tiza.cc) is a hosted discovery service that continuously crawls and +live-protocol-probes public agentic resources — MCP servers, A2A agent cards, +Skills, and APIs — then ranks them for relevance and readiness. It implements ARD +as both a host and a federatable registry. The catalog can be pulled from +[`tiza.cc/.well-known/ai-catalog.json`](https://tiza.cc/.well-known/ai-catalog.json). + +### HTTP API + +Search the registry directly at `POST https://tiza.cc/api/ard/v1/search`: + +```bash +curl -sS -X POST https://tiza.cc/api/ard/v1/search \ + -H 'content-type: application/json' \ + -d '{"query":{"text":"MCP server for GitHub issues"},"pageSize":5}' \ + | jq -r '.results[] | "\(.displayName)\t\(.url)"' +``` + +Results are standard ARD `CatalogEntry` objects with `urn:air:` identifiers and +the standard `application/{mcp-server-card,a2a-agent-card,ai-registry}+json` types. + +### MCP and A2A + +Tiza is also reachable as a hosted, no-auth MCP server at `https://tiza.cc/mcp` +and as an A2A agent at `https://tiza.cc/.well-known/agent-card.json`. From d59808b39e26ff3626c3535fcc230986ee5a1a0c Mon Sep 17 00:00:00 2001 From: Miguel Angel Cabrera Minagorri Date: Mon, 22 Jun 2026 11:55:13 -0700 Subject: [PATCH 2/2] clarify sentences Signed-off-by: Miguel Angel Cabrera Minagorri --- docs/ref_implementations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref_implementations.md b/docs/ref_implementations.md index cd93b65..a791ca0 100644 --- a/docs/ref_implementations.md +++ b/docs/ref_implementations.md @@ -74,8 +74,8 @@ curl -sS 'https://ai-catalog.outshift.io/v1/agents?filter=type%3Dapplication%2Fm [Tiza](https://tiza.cc) is a hosted discovery service that continuously crawls and live-protocol-probes public agentic resources — MCP servers, A2A agent cards, -Skills, and APIs — then ranks them for relevance and readiness. It implements ARD -as both a host and a federatable registry. The catalog can be pulled from +Skills, and APIs — then ranks them for relevance and readiness. +The catalog can be pulled from [`tiza.cc/.well-known/ai-catalog.json`](https://tiza.cc/.well-known/ai-catalog.json). ### HTTP API