# Typless — how to use (mcp.ai)

Connect your Typless account and use 3 tools for document data extraction straight from your AI agent. Connect with your own API key. Typless is an AI-powered document extraction platform that automates manual data entry from various documents using a simple API.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_typless?ms=1787291520000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `typless_get_document_types`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/typless`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/typless/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/typless/get/document/types` — Tool to retrieve a list of all document types available in the account. Use when you need to view or select schemas for document processing.
- `POST https://api.mcp.ai/api/typless/get/profile` — Tool to retrieve the authenticated user profile. Use after authentication to confirm account details.
- `POST https://api.mcp.ai/api/typless/update/profile` — Updates the authenticated user's Typless profile information. Use this tool when the user wants to change their full name or newsletter subscription preference. Note: Only full_name and newsletter_sub
  - body: { full_name?: string, newsletter_subscription?: boolean }

## Example prompts
- "What can I do in Typless?"
- "Show me a summary of my Typless account"

## More
- Page: https://mcp.ai/typless
- Agent spec (llms.txt): https://mcp.ai/typless/llms.txt
- Postman collection: https://mcp.ai/typless/postman.json
