loading…
Search for a command to run...
loading…
Provides identity infrastructure for AI agents to manage email communications, including sending, replying, and organizing messages. It also includes a secure v
Provides identity infrastructure for AI agents to manage email communications, including sending, replying, and organizing messages. It also includes a secure vault for managing credentials and generating TOTP codes.
Identity infrastructure for AI agents — email, credentials, and TOTP in one place.
{
"mcpServers": {
"loomal": {
"command": "npx",
"args": ["-y", "@loomal/mcp"],
"env": {
"LOOMAL_API_KEY": "YOUR_API_KEY"
}
}
}
}
Get your API key from console.loomal.ai.
> Send an onboarding email to the new client
> Check my inbox and reply to the latest message
> Store my Stripe API key in the vault
> Get the TOTP code for my AWS account
> Delete the test thread I created earlier
| Tool | Description |
|---|---|
identity_whoami |
Get identity info — name, email, scopes |
| Tool | Description |
|---|---|
mail_send |
Send email |
mail_reply |
Reply to a message |
mail_list_messages |
List inbox messages |
mail_get_message |
Get a specific message |
mail_update_labels |
Update message labels |
mail_delete_message |
Delete a message |
mail_list_threads |
List conversation threads |
mail_get_thread |
Get a full thread |
mail_delete_thread |
Delete a thread |
| Tool | Description |
|---|---|
vault_list |
List stored credentials |
vault_get |
Get a decrypted credential |
vault_totp |
Generate a TOTP code (response includes backupCodesRemaining) |
vault_totp_use_backup |
Atomically consume one TOTP backup code |
vault_store |
Store or update a credential (generic — any type) |
vault_storeApiKey |
Store an API key (single secret or OAuth client+secret pair) |
vault_storeCard |
Store a payment card — encrypted at rest, vault does not process payments |
vault_storeShippingAddress |
Store a shipping / mailing address |
vault_delete |
Delete a credential |
Each identity is its own MCP server instance:
{
"mcpServers": {
"sales-agent": {
"command": "npx",
"args": ["-y", "@loomal/mcp"],
"env": { "LOOMAL_API_KEY": "loid-sales-key" }
},
"support-agent": {
"command": "npx",
"args": ["-y", "@loomal/mcp"],
"env": { "LOOMAL_API_KEY": "loid-support-key" }
}
}
}
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mailgent-mcp-server": {
"command": "npx",
"args": []
}
}
}