agent-identity-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SMS_FLORIN_API_KEY | Yes | Your SMS Florin API key |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_test_emailA | Get a fresh, real email address that can receive mail for a short time — use it to sign up for something you're testing, then call get_test_email_messages to read what arrives. |
| get_test_email_messagesA | Get the messages received so far on an address created with create_test_email. |
| list_servicesA | List the services a real UK phone number can be rented for (WhatsApp, Telegram, Google, Discord, etc.), with prices. |
| rent_test_phone_numberA | Rent a real UK phone number for a given service so it can receive an SMS/OTP verification code. Debits the account balance. Returns a rentalId to check with wait_for_test_sms. |
| wait_for_test_smsA | Block until the first SMS/OTP code arrives on a phone rental, or time out. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: create_test_email and get_test_email_messages handle email lifecycle, while list_services, rent_test_phone_number, and wait_for_test_sms handle phone/SMS OTP. No two tools overlap in function or target resource.
All tools follow the verb_noun pattern with lowercase snake_case: create, get, list, rent, wait. Minor imprecision like list_services not specifying 'phone' is acceptable given the narrow domain.
5 tools is well-scoped for the server's purpose of testing identity verification via email and phone SMS. Each tool earns its place and the count feels neither sparse nor bloated.
The tool surface covers the essential flows: create and read test emails; list services, rent a phone number, and wait for SMS. There are no obvious dead ends or missing operations for the stated identity-testing purpose.