Eformogi exposes an MCP server so any MCP-capable agent can read your vault, create consent grants, and act on your behalf — governed by a per-category policy you control. No SDK. No tokens to manage. No surprises.
Open Eformogi → AI Agent Access → Manage API Keys. Name it after your client (e.g. "Claude Desktop"). Copy the key — it starts with efg_ and is shown only once.
In the same panel, click Policy on your key. For each of the 18 categories choose Auto (agent reads freely), Ask (queues for your approval), or Never (blocked). Defaults are conservative — SSN is Never, medical is Ask, basic_info is Auto.
For Claude Desktop, add this to your config file:
{
"mcpServers": {
"eformogi": {
"url": "https://eformogi.com/api/mcp",
"headers": {
"Authorization": "Bearer efg_YOUR_KEY_HERE"
}
}
}
}Config location: macOS ~/Library/Application Support/Claude/claude_desktop_config.json · Windows %APPDATA%\Claude\claude_desktop_config.json
For ChatGPT, Gemini, or custom agents — point your MCP client at https://eformogi.com/api/mcp with the same Bearer header.
Six tools, all enforced against your policy. Call tools/list for full JSON-RPC schemas.
read_profileRead vault data for specified categories. Filtered by your policy.list_consentsList active consent receipts — who you have shared with.create_consentCreate a consent grant. "Ask" categories queue for your approval.check_policyShow what categories the agent can access (auto / ask / never).log_actionLog an explicit action description into the activity feed.search_orgsSearch organizations the user can share data with.Every key has an 18-category policy. Each category can be set to one of three rules:
Every call is logged in Agent Activity. Revoking a key invalidates it immediately — no propagation delay.
List the tools your key can see:
curl -X POST https://eformogi.com/api/mcp \
-H "Authorization: Bearer efg_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'Check what your policy allows:
curl -X POST https://eformogi.com/api/mcp \
-H "Authorization: Bearer efg_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "check_policy",
"arguments": {}
}
}'Create a free account, generate a key, and you'll be calling MCP tools in under two minutes.
Claude is a trademark of Anthropic, PBC. ChatGPT is a trademark of OpenAI, Inc. Gemini is a trademark of Google LLC. Model Context Protocol is an open standard published by Anthropic. Eformogi is an independent product and is not affiliated with, endorsed by, or sponsored by Anthropic, OpenAI, or Google.