@loomal/mcp
v0.5.0
Published
MCP server for Loomal — Identity infrastructure for AI agents
Maintainers
Readme
@loomal/mcp
Identity infrastructure for AI agents — email, credentials, and TOTP in one place.
Quick Start
{
"mcpServers": {
"loomal": {
"command": "npx",
"args": ["-y", "@loomal/mcp"],
"env": {
"LOOMAL_API_KEY": "YOUR_API_KEY"
}
}
}
}Get your API key from console.loomal.ai.
Examples
> 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 earlierTools
Identity
| 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 |
Vault
| 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 |
Multiple Identities
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" }
}
}
}Docs
License
MIT
