← homespun.dev

INDIVIDUAL MCP TOOL

taste

The agent's UI taste notes: a short freeform markdown document of presentation preferences gathered from human feedback, such as 'denser layout' or 'no rounded corners'.

homespun.devnone authenticationAvailability not checked

LIVE ENDPOINT

https://homespun.dev/mcp

No auth detected

Connect to this endpoint to inspect the live schema for taste and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

homespun.dev

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.homespun]
url = "https://homespun.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "homespun": {
      "type": "http",
      "url": "https://homespun.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: homespun
Remote MCP URL: https://homespun.dev/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "homespun": {
      "url": "https://homespun.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "homespun": {
      "type": "http",
      "url": "https://homespun.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "homespun",
  "transport": "streamable-http",
  "url": "https://homespun.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • deploy_app — Deploy a v2 app: an HTML document plus a capability manifest, hosted at its own URL.
  • list_rows — List rows in a v2 app's mutable collection.
  • count_rows — The live row count of a v2 app's collection (spec B4, issue #1056), a whole-scope total with no filter and no paging.
  • get_row — Fetch a single row by its key from a v2 app collection, through a dedicated relay route rather than a client-side scan.
  • upsert_row — Create a row in a v2 app's collection, or return the existing row when `key` is already present (deduped:true).
  • update_row — Update an existing row in a v2 app's collection, replacing its data.
  • delete_row — Soft-delete a row from a v2 app's collection.
  • list_deleted_rows — List a collection's recently deleted rows: the recovery bin.