Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Interface

import type { Interface } from "https://googleapis.deno.dev/v1/agentregistry:v1alpha.ts";

Represents the connection details for an Agent or MCP Server.

interface Interface {
protocolBinding?:
| "PROTOCOL_BINDING_UNSPECIFIED"
| "JSONRPC"
| "GRPC"
| "HTTP_JSON";
url?: string;
}

§Properties

§
protocolBinding?: "PROTOCOL_BINDING_UNSPECIFIED" | "JSONRPC" | "GRPC" | "HTTP_JSON"
[src]

Required. The protocol binding of the interface.

§
url?: string
[src]

Required. The destination URL.