Composway Docs
Tool reference

Get tool manifest

Return the canonical tool manifest for this running MCP server, including the tools schema version and a SHA-256 hash of each tool input schema.

Tool name: get_tool_manifest

Cost: Free - not billed, and does not draw on a plan quota.

Read-only

This tool only reads. It never creates or changes anything, so an assistant may call it without asking you first.

Return the canonical tool manifest for this running MCP server, including the tools schema version and a SHA-256 hash of each tool input schema.

Parameters

This tool takes no parameters.

Full input JSON Schema
{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"type": "object",
	"properties": {}
}

Response

Full output JSON Schema
{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"type": "object",
	"properties": {
		"version": {
			"type": "string"
		},
		"serverVersion": {
			"type": "string"
		},
		"tools": {
			"type": "array",
			"items": {
				"type": "object",
				"properties": {
					"name": {
						"type": "string"
					},
					"title": {
						"type": "string"
					},
					"description": {
						"type": "string"
					},
					"inputSchemaHash": {
						"type": "string"
					},
					"outputSchemaHash": {
						"type": "string"
					}
				},
				"required": ["name", "inputSchemaHash"],
				"additionalProperties": {}
			}
		}
	},
	"required": ["version", "serverVersion", "tools"],
	"additionalProperties": false
}

On this page