Help agents discover Rowset
Rowset is designed so agents do not have to rely on stale prompt text. A trusted agent should discover the live MCP server, then load Rowset's current feature guide before creating or changing data. If the client cannot use MCP and must call REST directly, use How to connect an AI agent to the Rowset Dataset API as the REST setup path.
Recommended startup order
- Configure the Rowset MCP URL with
Authorization: Bearer <key>. - Discover available MCP tools and schemas from the connected server.
- Call
get_user_infoto verify authentication. - Call
get_rowset_capabilitiesto load the current Rowset feature guide. - Call
get_all_datasets,get_archived_datasets, orsearch_datasetsbefore creating a new dataset. - Call
get_datasetbefore row operations so headers, index column, schema metadata, dataset context, and relationship summaries are in context.
MCP capability guide
get_rowset_capabilities returns a concise, structured guide for the connected
server. It groups Rowset features by workflow:
- account and MCP setup
- datasets
- dataset context and semantic schema
- schema mutations
- dataset relationships
- projects
- rows
- image and audio assets
- public previews
- archive, restore, and exports
Use the guide for workflow semantics. Use MCP tool discovery for exact current input schemas.
llms.txt
Rowset also publishes a generated text page for agents and search tools:
https://rowset.lvtd.dev/llms.txt
The page includes the MCP endpoint, REST API base, generated API docs link, skill URLs, capability groups, use-case guides, and privacy guardrails. It does not include user API keys or private dataset contents. Its content index lists documentation only; blog posts, comparison pages, and use-case marketing pages are intentionally omitted.
Installable skills
The repo skill package includes three skills:
rowsetfor setup, MCP authentication, and safe default workflowsrowset-featuresfor explaining supported capabilitiesrowset-use-casesfor choosing dataset shapes for common workflows
Install them with:
npx skills add LVTD-LLC/rowset
The app serves the skill markdown at:
https://rowset.lvtd.dev/SKILL.md
https://rowset.lvtd.dev/skills/rowset-features/SKILL.md
https://rowset.lvtd.dev/skills/rowset-use-cases/SKILL.md
What agents should treat as current
- MCP
tools/listis the exact source for live tool names, descriptions, and schemas. get_rowset_capabilitiesis the current workflow and feature guide.get_datasetis the current per-dataset context source before row work.- Generated API docs are the exact REST schema source.
- Public docs and skills explain stable workflows and guardrails.
Privacy guardrails
Agents should keep private authenticated access as the default, store keys only in private environment variables or secret stores, and ask before destructive actions such as deleting rows, archiving datasets, or clearing preview passwords.
Public previews are read-only browser sharing. They are not authentication and do not replace MCP or REST access.