Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.93 KB

File metadata and controls

36 lines (27 loc) · 1.93 KB

WellKnownFiles

MCP / WebMCP / Agent Skills discovery surfaces detected under .well-known and in the page HTML.

Properties

Name Type Description Notes
mcp_json bool Whether `/.well-known/mcp.json` exists (legacy MCP server manifest path) [optional]
mcp_server_card bool Whether `/.well-known/mcp/server-card.json` exists (MCP server card, SEP-1649 draft) [optional]
webmcp_tools_json bool Whether `/.well-known/webmcp/tools.json` exists (Chrome Labs WebMCP tools manifest) [optional]
mcp_link_tag bool Whether a `<link rel=&quot;mcp&quot;>` discovery tag was detected in the page HTML [optional]
mcp_endpoint str The href value of the `<link rel=&quot;mcp&quot;>` tag, if present; null otherwise [optional]
agent_skills_index bool Whether `/.well-known/agent-skills/index.json` exists (Agent Skills Discovery, Cloudflare RFC v0.2.0) [optional]
agent_skills_count int Number of skills listed in the Agent Skills Discovery index (0 when the index is absent or empty) [optional]

Example

from wordlift_client.models.well_known_files import WellKnownFiles

# TODO update the JSON string below
json = "{}"
# create an instance of WellKnownFiles from a JSON string
well_known_files_instance = WellKnownFiles.from_json(json)
# print the JSON string representation of the object
print(WellKnownFiles.to_json())

# convert the object into a dict
well_known_files_dict = well_known_files_instance.to_dict()
# create an instance of WellKnownFiles from a dict
well_known_files_from_dict = WellKnownFiles.from_dict(well_known_files_dict)

[Back to Model list] [Back to API list] [Back to README]