Composway Docs
Tool reference

Get server info

Return Composway MCP server freshness metadata: server version, tools schema version, git/deploy metadata, and Worker version metadata when available.

Tool name: get_server_info

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 Composway MCP server freshness metadata: server version, tools schema version, git/deploy metadata, and Worker version metadata when available.

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": {
		"name": {
			"type": "string"
		},
		"serverVersion": {
			"type": "string"
		},
		"toolsSchemaVersion": {
			"type": "string"
		},
		"gitSha": {
			"type": "string"
		},
		"deployedAt": {
			"type": "string"
		},
		"workerVersionId": {
			"type": "string"
		},
		"workerVersionTag": {
			"type": "string"
		}
	},
	"required": [
		"name",
		"serverVersion",
		"toolsSchemaVersion",
		"gitSha",
		"deployedAt"
	],
	"additionalProperties": false
}

On this page