Privy.io MCP Server
Enables linking Apple OAuth accounts to users during user creation.
Allows creating wallets, checking balances, and retrieving transaction history on the Bitcoin blockchain.
Enables linking Discord OAuth accounts to users during user creation.
Allows creating wallets, checking balances, and retrieving transaction history on Ethereum and EVM-compatible chains.
Enables linking Farcaster OAuth accounts to users during user creation.
Enables linking GitHub OAuth accounts to users during user creation.
Enables linking Google OAuth accounts to users during user creation.
Supports wallet creation and transaction history on the Optimism (OP Mainnet) chain.
Supports wallet creation and transaction history on the Polygon chain.
Allows creating wallets, checking balances, and retrieving transaction history on Solana.
Enables linking Spotify OAuth accounts to users during user creation.
Enables linking Telegram OAuth accounts to users during user creation.
Enables linking TikTok OAuth accounts to users during user creation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Privy.io MCP Servercheck wallet balance for 0x1234abcd"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Privy.io MCP Server
A Model Context Protocol (MCP) server for Privy.io - the Web3 wallet infrastructure platform. Provides comprehensive access to user management, wallet operations, and blockchain interactions through Claude and other MCP clients.
Features
User Management
Get User Details: Retrieve user information by Privy DID including linked accounts, MFA methods, and metadata
List Users: Paginated listing of all users (default 50 per page)
Search Users: Search for users by search term and optional identifiers (emails, phone numbers, wallet addresses)
Query by Wallet: Find users by blockchain wallet address
Create Users: Create new users with linked accounts (email, phone, wallet, OAuth providers)
Delete Users: Remove users and associated data
Wallet Management
Get Wallet: Retrieve wallet details including address, chain type, and timestamps
List Wallets: Paginated wallet listing with metadata
Create Wallets: Generate wallets for users (Ethereum, Solana, Bitcoin, EVM-compatible chains)
Wallet Balance: Check current wallet balances
Transaction History: Retrieve wallet transaction history with pagination
Update Wallets: Modify wallet metadata and configuration
Related MCP server: Celo MCP Server
Installation
Prerequisites
Python 3.10 or higher
Privy.io account with API credentials
Quick Start with uvx (Recommended)
The easiest way to use this MCP server is with uvx, which automatically fetches the package from PyPI:
uvx privy-mcp-serverNo installation needed! Configure your MCP client (see Usage below) and you're ready to go.
Manual Installation (Development)
For local development:
Clone the repository:
git clone https://github.com/incentivai-io/privy-mcp-server.git
cd privy-mcp-serverCreate virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activateInstall dependencies:
pip install -e .Configure environment variables:
cp .env.example .envEdit .env and add your Privy credentials:
PRIVY_APP_ID=your_app_id_here
PRIVY_APP_SECRET=your_app_secret_hereGet your credentials: Dashboard → App Settings → Basics on Privy.io
Usage
Running the Server
Run directly with Python:
python -m privy_mcpOr use the MCP inspector for testing:
npx @modelcontextprotocol/inspector python -m privy_mcpFor example, from the project directory:
npx @modelcontextprotocol/inspector python -m privy_mcpConfiguring with Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Using uvx (Recommended)
{
"mcpServers": {
"privy": {
"command": "uvx",
"args": ["privy-mcp-server"],
"env": {
"PRIVY_APP_ID": "your_app_id_here",
"PRIVY_APP_SECRET": "your_app_secret_here"
}
}
}
}Using local Python installation
{
"mcpServers": {
"privy": {
"command": "python",
"args": ["-m", "privy_mcp"],
"env": {
"PRIVY_APP_ID": "your_app_id_here",
"PRIVY_APP_SECRET": "your_app_secret_here"
}
}
}
}Restart Claude Desktop after configuration.
Available Tools
User Management
get_user- Get user details by Privy DID. Returns user data including linked accounts (email, phone, wallet, OAuth providers), MFA methods, creation timestamps, terms acceptance, and custom metadatalist_users- List all users with pagination support. Returns paginated list of users with their linked accounts, wallets, and metadata (default 50 per page)search_users- Search for users by search term and optional identifiers (emails, phone numbers, wallet addresses). Returns user data matching the search criteria including linked accounts, MFA methods, and metadataget_user_by_wallet- Query and retrieve user information by blockchain wallet address. Supports Ethereum, Solana, Bitcoin, and all EVM-compatible chainscreate_user- Create a new user with linked accounts. Supports email, phone, wallet, and 15+ OAuth providers (Apple, Discord, GitHub, Google, Farcaster, Telegram, Twitter, etc.). Optionally creates an embedded walletdelete_user- Delete a user by Privy DID. This action is permanent and removes all associated data
Wallet Management
get_wallet- Get wallet details by wallet ID. Returns wallet address, chain type, creation/export/import timestamps, policy IDs, and owner informationlist_wallets- List all wallets with pagination. Returns wallet addresses, chain types, and associated metadatacreate_wallet- Create or pregenerate a wallet for a user. Supports Ethereum, Solana, Bitcoin, and all EVM-compatible chainsget_wallet_balance- Get the current balance of a walletget_wallet_transactions- Get transaction history for a wallet with pagination supportupdate_wallet- Update wallet metadata and configuration
Example Queries
Once configured with Claude Desktop, you can ask:
"List all users in my Privy application"
"Get user details for DID did:privy:xxx"
"Search for users with email user@example.com"
"Find users by wallet address 0x123..."
"Search for users matching 'john' with phone number +1234567890"
"Create a new user with email user@example.com"
"Create a wallet for user did:privy:xxx on Solana"
"Show me all wallets in the system"
"Get transaction history for wallet xyz"
"What's the balance of wallet xyz?"
"Update wallet metadata for wallet xyz"
API Rate Limits
Privy.io enforces rate limits:
User data endpoints: 500 requests per 10 seconds
Contact Privy support for rate limit increases
Authentication
This server uses HTTP Basic Authentication with custom headers:
Authorization: Basic <base64(app_id:app_secret)>privy-app-id: <app_id>
All requests are made over HTTPS to https://api.privy.io/v1.
Supported Blockchain Chains
Ethereum and all EVM-compatible chains
Solana
Bitcoin
Base, Polygon, Arbitrum, Optimism, and more
OAuth Providers Supported
Users can link accounts from 15+ providers:
Apple
Discord
Farcaster
GitHub
Google
LinkedIn
Spotify
Telegram
TikTok
Twitter
And more
Development
Running Tests
pip install -e ".[dev]"
pytestProject Structure
privy-mcp-server/
├── src/
│ └── privy_mcp/
│ ├── __init__.py # Package initialization
│ ├── client.py # Privy API client
│ └── server.py # MCP server implementation
├── pyproject.toml # Project dependencies
├── .env.example # Environment template
└── README.md # DocumentationSecurity Considerations
Never commit
.envfile or expose API credentialsStore credentials securely using environment variables or secrets management
API credentials have full access to your Privy application
This is a defensive security tool - do not use for malicious purposes
Review Privy's security documentation: docs.privy.io/security
Troubleshooting
Authentication Errors
Verify
PRIVY_APP_IDandPRIVY_APP_SECRETare correctCheck credentials at Dashboard → App Settings → Basics
Ensure environment variables are loaded
Rate Limit Errors
Reduce request frequency
Implement exponential backoff
Contact Privy support for limit increases
Connection Errors
Verify internet connectivity
Check Privy API status
Ensure firewall allows HTTPS requests
Resources
License
MIT License - See LICENSE file for details
Contributing
Contributions welcome! Please:
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
Support
Server Issues: GitHub Issues
Privy Support: hi@privy.io
MCP Specification: Model Context Protocol
Documentation: docs.privy.io
Disclaimer
This is an unofficial MCP server implementation. Privy.io has identified MCP as an emerging technology and encourages collaboration. For production use cases, review Privy's official guidance and contact their team at hi@privy.io.
Acknowledgments
Built on:
Privy.io - Web3 wallet infrastructure
Model Context Protocol - Anthropic's MCP specification
HTTPX - Modern HTTP client for Python
Available Tools
12 toolscreate_userA
Create a new user with linked accounts. Supports email, phone, wallet, and 15+ OAuth providers (Apple, Discord, GitHub, Google, Farcaster, Telegram, Twitter, etc.). Optionally creates an embedded wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| linked_accounts | Yes | ||
| create_embedded_wallet | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It mentions optional embedded wallet creation but omits details on idempotency, error states, or side effects like email verification. Adds some transparency but insufficient for a create tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the main action, no filler. Every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given an output schema exists (unknown content), the description covers core functionality but lacks prerequisites, edge cases (e.g., duplicate user handling), and return value expectations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description must compensate. It explains linked_accounts supports email, phone, wallet, and 15+ OAuth providers, and clarifies create_embedded_wallet is optional. Good coverage, though nested object structure is not detailed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Create a new user with linked accounts,' specifying a unique verb and resource. It distinguishes from sibling tools like create_wallet, which creates wallets instead of users.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description lists supported OAuth providers but offers no guidance on when to use create_user versus alternatives like search_users or update_wallet. No excusions or context for when this tool is preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_walletC
Create or pregenerate a wallet for a user. Supports Ethereum, Solana, Bitcoin, and all EVM-compatible chains.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| chain_type | No | ethereum |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It mentions 'create or pregenerate' but does not clarify side effects, permissions needed, or behavior if wallet already exists. No disclosure of destructive or read-only traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (two sentences) with no wasted words, but it lacks essential details. It is not overly verbose, but the brevity compromises informativeness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description does not cover parameter semantics or return value. For a 2-parameter tool, it should explain parameters and success/error states. Incomplete for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, yet the description adds no meaning to the parameters. 'user_id' is required but unexplained; 'chain_type' has a default but no allowed values or relation to 'supported chains' is made.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Create or pregenerate' and the resource 'wallet for a user', explicitly listing supported chains (Ethereum, Solana, Bitcoin, EVM-compatible). This distinguishes it from siblings like 'get_wallet' or 'update_wallet'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like 'create_user' or 'get_wallet'. The description does not mention prerequisites, when not to use it, or how it relates to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_userA
Delete a user by Privy DID. This action is permanent and removes all associated data.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that deletion is permanent and removes all associated data. However, it does not detail required permissions or side effects like cascading deletes. Since no annotations are provided, the description carries the full burden, but it adequately warns about permanence.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two succinct sentences with no unnecessary information. Every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple deletion tool with an output schema. It does not explain return values, but that is permissible due to the output schema. No information about rate limits or reversibility is provided, but the permanence note is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds meaning to the user_id parameter by specifying it is a 'Privy DID', which is not evident from the schema alone. Schema coverage is 0%, so the description compensates well, though it could clarify expected format or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (delete), the resource (user), and the identifier (Privy DID). It distinguishes from sibling tools like create_user and get_user.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. The description does not mention prerequisites, conditions for deletion, or when it would be appropriate to use other tools instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_userA
Get user details by Privy DID (decentralized identifier). Returns user data including linked accounts (email, phone, wallet, OAuth providers), MFA methods, creation timestamps, terms acceptance, and custom metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It describes the return data but does not explicitly state it is a read-only operation or discuss side effects, permissions, or rate limits. The name implies a safe read, but description lacks explicit transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence efficiently conveys purpose and return data. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple one-parameter tool and the existence of an output schema (not shown but mentioned), the description adequately covers core functionality. Could mention error conditions or required scopes, but not critical for a basic get operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% for parameter descriptions. The description clarifies that the user_id parameter is a Privy DID, adding meaning beyond the schema's bare 'string' type. However, no further details on format or validation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Get user details by Privy DID' and lists specific return fields. Distinct from sibling tools like get_user_by_wallet and list_users.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. Does not mention prerequisites or constraints for the user_id parameter.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_by_walletA
Query and retrieve user information by blockchain wallet address. Supports Ethereum, Solana, Bitcoin, and all EVM-compatible chains.
| Name | Required | Description | Default |
|---|---|---|---|
| wallet_address | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It notes support for multiple chains, which is helpful, but does not disclose error handling (e.g., wallet not found), authentication requirements, or side effects. As a read operation, this is acceptable but still lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the core action and includes key differentiators (supported chains). There is no wasted text; every part contributes to clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has only one required parameter and an output schema (presumed present), the description covers the essential context: what the tool does, the input type, and the supported chains. It lacks mention of return values, but the output schema likely covers that.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It implicitly describes the wallet_address parameter through the supported chains, but does not specify format, case sensitivity, or examples. The added chain context provides some value beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Query and retrieve user information by blockchain wallet address.' It specifies the supported blockchains (Ethereum, Solana, Bitcoin, EVM-compatible chains), which distinguishes it from sibling tools like get_user (likely by user ID) or list_users.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates the tool should be used when you have a wallet address and need associated user info. The sibling tools suggest alternatives (e.g., get_user for user IDs), but the description does not explicitly state when not to use or compare to other wallet-related tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_walletA
Get wallet details by wallet ID. Returns wallet address, chain type, creation/export/import timestamps, policy IDs, and owner information.
| Name | Required | Description | Default |
|---|---|---|---|
| wallet_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must cover behavioral traits. It correctly indicates a read operation by listing returned fields, but it does not disclose any side effects, authentication requirements, or error conditions. The behavior is clear but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence followed by a succinct list of return fields. It is front-loaded and contains no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (1 parameter, output schema present), the description adequately covers the main purpose and return values. It lacks error handling or ID format notes, but the presence of an output schema reduces the need for detailed return documentation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter wallet_id is mentioned in the description ('by wallet ID'), giving basic context. However, with 0% schema coverage, the description does not add format or constraint details (e.g., length, pattern) beyond what the schema implies. This is minimal compensation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves wallet details by ID and lists the returned fields (address, chain type, timestamps, etc.). It distinguishes itself from sibling tools like get_wallet_balance and get_wallet_transactions by focusing on full wallet metadata.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is used when complete wallet information is needed, but it does not explicitly state when to use it versus alternatives like get_wallet_balance or get_wallet_transactions. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_wallet_balanceB
Get the current balance of a wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| wallet_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description implies a read-only, safe operation. However, it does not explicitly state it's read-only or disclose any other behavioral traits beyond the basic purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence with no wasted words. It is appropriately concise for a simple tool, though it could include a bit more context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema (which can document return values), the description covers the essential purpose. Additional context about balance format or edge cases could improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not add any meaning to the 'wallet_id' parameter, leaving the agent without context on what to provide.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Get the current balance of a wallet' clearly states the verb (Get) and resource (balance of a wallet), distinguishing it from siblings like 'get_wallet' (full details) and 'get_wallet_transactions' (transactions).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives, nor any prerequisites or context provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_wallet_transactionsB
Get transaction history for a wallet with pagination support.
| Name | Required | Description | Default |
|---|---|---|---|
| wallet_id | Yes | ||
| limit | No | ||
| cursor | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. It only states basic functionality (getting history with pagination) but fails to disclose critical traits like read-only nature, error handling (e.g., invalid wallet_id), pagination mechanics (cursor usage, maximum limit), or ordering of transactions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, with just two sentences (10 words) that front-load the key information: what the tool does and that it supports pagination. No words are wasted, and the structure is efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the 3 parameters and the existence of an output schema, the description lacks completeness. It does not explain cursor-based pagination, default sorting, or any constraints (e.g., maximum limit). While the output schema may cover return values, the description should provide enough context for an agent to use the tool correctly, which it fails to do.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, meaning the schema provides no descriptions for parameters. The tool description adds only minimal context ('pagination support' hints at limit/cursor) but does not explain wallet_id, limit, or cursor syntax or behavior. Much more detail is needed to compensate for the missing schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets transaction history for a wallet, with pagination support. It uses a specific verb ('get') and resource ('transaction history for a wallet'), and distinguishes from sibling tools which focus on users and wallets, not transactions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context (fetching history with pagination) but provides no explicit guidance on when to use this tool versus alternatives, nor any exclusions. Since there are no other transaction-related tools, the need for differentiation is low, but the lack of explicit usage direction reduces the score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_usersA
List all users with pagination support. Returns paginated list of users with their linked accounts, wallets, and metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| cursor | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries the burden. It describes the return structure but does not mention read-only nature, ordering, rate limits, or side effects. Basic transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise with one sentence that front-loads the main action. It could be slightly more informative without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given an output schema exists (not shown), the description adequately covers the return context. However, missing parameter explanations leave a gap for a simple two-parameter tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% (no parameter descriptions in schema or description). The description mentions pagination support but does not explain what limit and cursor parameters do or their valid values.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists all users with pagination, and specifies the returned data (users with linked accounts, wallets, metadata). It distinguishes from siblings like search_users (filtered) and get_user (single user).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for unfiltered listing with pagination but does not explicitly state when to use versus alternatives like search_users for filtering or get_user for a single record.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_walletsB
List all wallets with pagination. Returns wallet addresses, chain types, and associated metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| cursor | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for behavioral disclosure. It only states that it lists wallets with pagination and returns specified fields, but omits details on safety (read-only), rate limits, error behavior, or default ordering. This is insufficient for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, efficiently communicating the core purpose and return data. It is front-loaded with the primary action. While it could be slightly more structured (e.g., listing return fields separately), it is concise without unnecessary content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (list with pagination), the description covers the main purpose and return data. However, it lacks parameter descriptions and usage guidance, which are necessary for complete contextual understanding. The output schema exists but is not shown; if it fully documents the return structure, the description's completeness improves marginally.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, and the description does not elucidate the 'limit' or 'cursor' parameters. It only mentions pagination generically, leaving the agent to infer parameter usage from the schema strictly. The description adds no value beyond what the schema type hints provide.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' and resource 'wallets', which is clear and unambiguous. It also states the return fields (addresses, chain types, metadata), differentiating it from single-wallet retrieval and user listing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives like get_wallet or list_users. However, the verb 'List all' and the sibling context imply it is for enumerating all wallets, making the usage contextually clear but not formally guided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_usersA
Search for users by search term OR specific identifiers (emails, phone numbers, wallet addresses). Note: Use either search_term OR specific identifiers, not both. Returns user data matching the search criteria including linked accounts, MFA methods, and metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| search_term | No | ||
| emails | No | ||
| phone_numbers | No | ||
| wallet_addresses | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description partially addresses behavior by stating it 'Returns user data matching the search criteria including linked accounts, MFA methods, and metadata.' It does not mention pagination, auth requirements, or output format, leaving gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the purpose. Every phrase adds value with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 4 parameters (none required), an output schema, and no enums, the description covers return content but omits search behavior (e.g., partial vs exact match) and whether multiple identifiers can be combined. Adequate but not exhaustive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains the mutual exclusivity of 'search_term' vs specific identifiers and lists the identifier types (emails, phone numbers, wallet addresses), adding meaning beyond the bare schema. Could add format constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Search for users by search term OR specific identifiers,' specifying the verb 'Search' and the resource 'users'. It distinguishes from siblings like 'get_user' (by ID) and 'list_users' (all users).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly instructs 'Use either search_term OR specific identifiers, not both,' providing conditional usage guidance. However, it does not contrast with when to use sibling tools like 'get_user' for exact matches.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_walletC
Update wallet metadata and configuration.
| Name | Required | Description | Default |
|---|---|---|---|
| wallet_id | Yes | ||
| updates | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description only says 'Update' with no disclosure of behavioral traits such as side effects, permissions required, reversibility, or behavior on partial updates. With no annotations, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence. However, it is too minimal for a tool with complex parameters, lacking essential details. It is not verbose but under-specified for the complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is incomplete given the tool's complexity (two parameters, one being an open object). It does not explain return values despite an output schema existing, nor does it cover the behavior of the 'updates' parameter.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% (no parameter descriptions in the schema). The description does not add any meaning to the parameters 'wallet_id' or 'updates', leaving the agent to infer their purpose and structure from names alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Update') and the resource ('wallet metadata and configuration'). It distinguishes from siblings as the only update tool among similar tools like create_wallet, get_wallet, list_wallets, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, when not to use, or comparison with other tools like create_wallet or get_wallet.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
12 tool updates
v0.1.2- First observed
create_user - First observed
create_wallet - First observed
delete_user - First observed
get_user - First observed
get_user_by_wallet - First observed
get_wallet - First observed
get_wallet_balance - First observed
get_wallet_transactions - First observed
list_users - First observed
list_wallets - First observed
search_users - First observed
update_wallet
TDQS
Scored across 12 tools
Each tool has a clearly distinct purpose: user creation vs wallet creation, different retrieval methods (by DID, by wallet address, search), and separate actions for wallets (balance, transactions, update). No overlapping functionality.
All tools follow a consistent verb_noun pattern (create_user, get_wallet_balance, list_users) with occasional prepositions for specificity (get_user_by_wallet). No mixing of conventions or vague verbs.
12 tools cover the main operations for user and wallet management without being excessive. Each tool serves a clear need, and the count is appropriate for the server's scope.
Covers most CRUD operations: create, read, delete for users; create, read, update for wallets. Missing update_user and delete_wallet, but the core workflows are well-supported, and agents can likely work around minor gaps.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Provide AI agents and automation tools with contextual access to blockchain data including balance…
Multi-chain wallet intelligence: balances, transactions, ENS, OFAC screening across 7 chains.
Give your AI hands. Identity, credential vault, and API gateway for autonomous agents.
One API, all things verified — control, delegation, human approval, anti-impersonation.
1
Related MCP Servers
AlicenseBqualityDmaintenanceEnables AI agents to create wallets, sign transactions, and manage blockchain operations across multiple chains like Ethereum, Solana, and more via Privy.242MIT
Celo MCP Serverofficial
FlicenseAqualityAmaintenanceProvides comprehensive access to Celo blockchain data, token operations, NFT management, smart contract interactions, transaction handling, governance, and staking operations.155-
onchainos MCP Serverofficial
FlicenseNot gradedqualityBmaintenanceEnables on-chain operations including token search, market data, wallet management, swap execution, and DApp interactions across 20+ blockchains.331-- FlicenseNot gradedqualityDmaintenanceEnables read and write access to the Celo blockchain including balance checks, token transfers, swaps, agent identity (ERC-8004), and x402 micropayments, returning unsigned transactions for user signing.-