# Tin Can Smartphone — full public digest ## Product Tin Can Smartphone turns an Android phone into an SMS gateway. Messages ride the SIM plan you already pay for. Your project or AI agent talks to our cloud via REST API and MCP; the companion app sends and receives SMS on the device. Website: https://www.tincansmartphone.com/en/ ## How it works 1. Your project or AI agent: Call the REST API or MCP server with a personal access token when you need phone tools. 2. Tin Can Cloud: We queue outbound SMS, expose inbound messages, webhooks, and account controls. 3. Your Android device: The Tin Can Smartphone app uses your SIM to send and receive real SMS. 4. Your audience: Texts arrive from a local number people recognize and can reply to. ## Pricing We charge for the relay and tools — never per message. Source of truth: homepage pricing section. Do not invent other prices. Source: https://www.tincansmartphone.com/en/#pricing - Hobby (Free): 1 device; 100 messages / month; community support - Pro (9 EUR/mo): 1 device, 5,000 messages / month; MCP server for your agent; Webhooks + REST API; 30-day money-back guarantee - Team (49 EUR/mo): 5 devices, pools + failover; 50,000 messages / month; shared audit log; priority support; 30-day money-back guarantee ## REST API REST API for devices, SIM cards, outbound/inbound SMS, webhooks, and account usage. Interactive OpenAPI docs are at /api/docs/. Language-prefixed HTML examples live at /en/sms/api-usage-examples/. Auth: Personal access tokens: Authorization: Bearer YOUR_ACCESS_TOKEN (Token YOUR_ACCESS_TOKEN also works). Create tokens when signed in under Developer → Access tokens. Docs: https://www.tincansmartphone.com/api/docs/ Schema: https://www.tincansmartphone.com/api/schema/ Examples: https://www.tincansmartphone.com/en/sms/api-usage-examples/ ## MCP setup Endpoint: https://www.tincansmartphone.com/mcp/ Public (no auth): ```json { "mcpServers": { "tincan": { "url": "https://www.tincansmartphone.com/mcp/" } } } ``` Authenticated (phone tools): ```json { "mcpServers": { "tincan": { "url": "https://www.tincansmartphone.com/mcp/", "headers": { "Authorization": "Bearer YOUR_ACCESS_TOKEN" } } } } ``` Add Authorization: Bearer YOUR_ACCESS_TOKEN (Token YOUR_ACCESS_TOKEN also works) to unlock phone tools (send_sms, read_otp, list_sims, get_status, webhooks, …) subject to your MCP settings and plan. Create a token when signed in; configure tools under the MCP setup console. ## Android app Version: 1.1.2 Download page: https://www.tincansmartphone.com/en/app/ APK: https://www.tincansmartphone.com/static/downloads/tin-can-smartphone-1.1.2.apk ## FAQ Q: What is Tin Can Smartphone? A: Tin Can Smartphone (also known as SMS-Api-Gateway) turns your Android phone into an SMS gateway. You send and receive SMS through the phone’s SIM using our web UI or REST API. Q: Do I need an Android smartphone? A: Yes. The companion Android app runs on your device, connects to your account, and handles SMS on the SIM. Q: How does sending and receiving SMS work? A: After you create an account, install the app, and log in, your SIM cards appear in the dashboard. Outbound SMS go from our API to the app and out via the SIM. Inbound SMS are exposed through the API and webhooks. Q: Where is the API documentation? A: See https://www.tincansmartphone.com/en/sms/api-usage-examples/ and interactive docs at https://www.tincansmartphone.com/api/docs/. Q: How do I get support? A: Use the contact form at https://www.tincansmartphone.com/en/contact/ or email hello@tincansmartphone.com. Q: Where is the MCP server? A: Public MCP JSON-RPC lives at https://www.tincansmartphone.com/mcp/. No token needed for product/docs tools; add Authorization: Bearer YOUR_ACCESS_TOKEN for phone tools. Setup guide: https://www.tincansmartphone.com/mcp/about/. ## Public pages - Home: https://www.tincansmartphone.com/en/ - Service: https://www.tincansmartphone.com/en/service/ - FAQ: https://www.tincansmartphone.com/en/faq/ - API usage examples: https://www.tincansmartphone.com/en/sms/api-usage-examples/ - Android app: https://www.tincansmartphone.com/en/app/ - About: https://www.tincansmartphone.com/en/about/ - Contact: https://www.tincansmartphone.com/en/contact/ - Imprint: https://www.tincansmartphone.com/en/imprint/ - Privacy: https://www.tincansmartphone.com/en/legal/privacy-policy/ - Terms: https://www.tincansmartphone.com/en/legal/terms-of-service/ - MCP about: https://www.tincansmartphone.com/mcp/about/ - MCP endpoint: https://www.tincansmartphone.com/mcp/ - llms.txt: https://www.tincansmartphone.com/llms.txt - OpenAPI docs: https://www.tincansmartphone.com/api/docs/