How many tools does the Attensira MCP server expose?
Eighteen, across six groups: find and measure, track, inbox, automations, agent, and account. Ten are read-only. Two delete data permanently — remove_prompt and delete_automation. Three spend credits — add_prompts, run_automation and ask. Every tool has an exact twin in the REST API, so the answer never depends on which door you came through.
Which MCP tools cost credits?
Exactly three: add_prompts, run_automation and ask. The other fifteen do not, and the ten read-only tools are free to call as often as you like. Credits meter agent work, not reading — pulling numbers you have already collected costs nothing. Creating an automation is also free; each run it performs is what spends.
Do I need an API key, or can I sign in with OAuth?
Both work on the same endpoint, permanently. OAuth is the better path wherever a browser can open — Claude, Claude Code, Cursor, VS Code, ChatGPT — because there is no key to paste into a config file, access tokens last 60 minutes and refresh silently, and revoking one client leaves the others working. Use a static atn_live_ key for headless callers such as n8n, CI jobs and scheduled scripts.
Can an assistant read another workspace's data by mistake?
No tool takes a workspace id. Your credential names the workspace, so there is no path segment, query parameter or argument anywhere in the tool set that could be pointed at someone else's data. To work across two workspaces you connect twice — one OAuth connection or one key per workspace, as two server entries.
What stops an assistant deleting my prompts?
Scope. Read tools need attensira:read, which every credential has; the eight write tools additionally need attensira:write, which you either approve at the OAuth consent screen or choose when minting a key. A write tool called without it returns 403 with error insufficient_scope. Scope is decided when you connect and cannot be widened afterwards — you revoke and redo it.
Why does my client show no Attensira tools?
The server speaks Streamable HTTP only — no stdio and no plain SSE transport. A client that launches local processes needs the mcp-remote bridge. Some clients also only load servers added before the conversation started, and some cache the tool list until a restart. A healthy connection lists 18 tools; https://mcp.attensira.com/healthz answers without a key if you need to confirm reachability first.
Which plans include the MCP server?
All of them. MCP is not one of the capabilities the billing ladder gates — those are Knowledge & Skills and Crawler Logs, both Growth and above — and it is not affected by the one gated model surface, Gemini, which also unlocks on Growth. What varies by plan is what there is to read: prompt slots, sampling depth and retention.