Connect your agent
Connect opointo to your coding agent.
One setup lets your agent ask which component fits, what props it takes and which rules keep it from rendering blank. That part is free and needs no account. With a licence key, the same agent also builds your app from the App Builder, installs components, checks its own work and keeps the components we supplied up to date.
claude mcp add --transport http --scope user opointo https://opointo.com/api/mcp
claude mcp add --transport http --scope user opointo https://opointo.com/api/mcp --header "Authorization: Bearer YOUR_LICENCE_KEY"
{
"mcpServers": {
"opointo": {
"url": "https://opointo.com/api/mcp"
}
}
}{
"mcpServers": {
"opointo": {
"url": "https://opointo.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_LICENCE_KEY"
}
}
}
}codex mcp add opointo --url https://opointo.com/api/mcp
export OPOINTO_LICENCE_KEY=YOUR_LICENCE_KEY codex mcp add opointo --url https://opointo.com/api/mcp --bearer-token-env-var OPOINTO_LICENCE_KEY
{
"servers": {
"opointo": {
"type": "http",
"url": "https://opointo.com/api/mcp"
}
}
}{
"inputs": [
{
"type": "promptString",
"id": "opointo-key",
"description": "opointo licence key",
"password": true
}
],
"servers": {
"opointo": {
"type": "http",
"url": "https://opointo.com/api/mcp",
"headers": {
"Authorization": "Bearer ${input:opointo-key}"
}
}
}
}gemini mcp add --scope user --transport http opointo https://opointo.com/api/mcp
gemini mcp add --scope user --transport http --header "Authorization: Bearer YOUR_LICENCE_KEY" opointo https://opointo.com/api/mcp
Run this once in your terminal. It adds opointo to every project.
Another agent? Add a remote MCP server (Streamable HTTP) at https://opointo.com/api/mcp.
Tools
What your agent gets.
Free, no account
- List components
list_components - Get a component
get_component - Find a component for a UI need
find_component - Get runtime rules
get_rules - Get the provider tree
get_provider_tree - Get theme tokens
get_theme_tokens - Check a snippet for blank-render bugs
check_snippet - Expand a recipe step
get_step
With a subscription
- Emit an app
emit_app - Add a screen to an exported app
add_screen - Update exported components
update_components - Verify an emitted app
verify_app - Emit a single screen
emit_screen - Install a component
install_component
$25 a seat a month, or $20 billed yearly. See pricing
Then
Ask it something.
Which opointo component should I use for a settings toggle, and which rules apply to it?
Build my app from opointo app 34ca4babb2
Design your screens in the App Builder, press Send app to agent, and paste the line it gives you.
Your agent writes a React Native and Expo project you own, native on both platforms: Liquid Glass on iOS 26 and Material 3 Expressive on Android. Building for iOS needs a Mac with Xcode 26; Android needs only the Android SDK.