INDIVIDUAL MCP TOOL
members
A v2 app's membership (auth spec section 6): who besides the owner can sign in to a private app and write to member-scoped collections.
LIVE ENDPOINT
https://homespun.dev/mcp
Connect to this endpoint to inspect the live schema for members and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
Parent server
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.