MetaMask Embedded Wallets (Web3Auth) MCP
Server Details
Helps AI coding agents integrate MetaMask Embedded Wallets (Web3Auth) SDKs.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Web3Auth/web3auth-mcp
- GitHub Stars
- 3
- Server Listing
- MetaMask Embedded Wallets MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.4/5 across 5 of 5 tools scored.
Each tool has a clearly distinct purpose: get_doc retrieves documentation content, get_example fetches example code, get_sdk_reference provides SDK source for reference, search_community accesses community forum posts, and search_docs searches documentation and examples. The descriptions explicitly differentiate their roles, with warnings (e.g., 'do NOT use this to discover features') to prevent misselection.
All tool names follow a consistent verb_noun pattern (e.g., get_doc, search_docs), using snake_case throughout. The verbs ('get' and 'search') are applied predictably based on the action, making the set highly readable and uniform.
With 5 tools, the server is well-scoped for its purpose of supporting MetaMask Embedded Wallets integration. Each tool earns its place by covering distinct aspects: documentation, examples, SDK reference, community support, and search. This count is neither too thin nor bloated, fitting typical MCP server ranges.
The tool surface is complete for the domain of Web3Auth integration support. It covers discovery (search_docs), reference (get_doc, get_sdk_reference), practical patterns (get_example), and troubleshooting (search_community), with no obvious gaps. The descriptions guide agents through a full workflow from learning to debugging.
Available Tools
5 toolsget_docARead-onlyIdempotentInspect
Fetch the full content of a MetaMask Embedded Wallets documentation page. Use after search_docs to read the actual doc. Tries Algolia, then llms.txt, then GitHub raw MDX as fallbacks.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | A docs.metamask.io URL, e.g. https://docs.metamask.io/embedded-wallets/sdk/react/ |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnly/idempotent/openWorld, so the safety profile is covered. The description adds valuable implementation context: 'Tries Algolia, then llms.txt, then GitHub raw MDX as fallbacks,' revealing the resolution strategy and external dependencies consistent with openWorldHint.
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?
Three sentences with zero waste: purpose (sentence 1), usage guideline (sentence 2), behavioral implementation (sentence 3). Front-loaded with the core action and appropriately sized for the tool's 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?
With 1 parameter, full annotations, and no output schema, the description adequately covers the tool's function, prerequisites (search_docs first), and fetch behavior. Lacks explicit return value description, but 'Fetch the full content' implies the output sufficiently for a read 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 100% with a clear description and example for the 'url' parameter. The description reinforces this is for 'documentation page' URLs, but adds no syntax, format constraints, or semantic details beyond what the schema already provides. Baseline 3 is appropriate given schema completeness.
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?
States specific action ('Fetch the full content') and specific resource ('MetaMask Embedded Wallets documentation page'). Clearly distinguishes from sibling search_docs by implying this retrieves a specific page rather than searching.
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?
Explicitly states workflow: 'Use after search_docs to read the actual doc.' This provides clear sequencing guidance and distinguishes it from the search_docs sibling tool, indicating it requires a URL from search results rather than being a starting point.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_exampleARead-onlyIdempotentInspect
Fetch the complete source code of a Web3Auth integration example from GitHub. Returns all source files needed to understand how the integration works. Examples are the PRIMARY reference for integration patterns — always prefer example code over raw SDK source.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Example name, e.g. 'React Quick Start' or 'Android Firebase' | |
| chain | No | Filter by blockchain family | |
| category | No | Filter by category | |
| platform | No | Filter by platform | |
| auth_method | No | Filter by auth method, e.g. 'auth0', 'firebase', 'google', 'grouped' |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations cover read-only/idempotent safety (readOnlyHint/idempotentHint) and external dependency (openWorldHint). The description adds valuable behavioral context about the return value ('Returns all source files') and confirms the external GitHub source, aligning with openWorldHint. Does not mention rate limits or caching, but covers the essential behavioral 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?
Three well-structured sentences: purpose (fetch source), return value (all source files), and usage guideline (prefer over SDK). Zero redundancy, front-loaded with action verb, every sentence earns its place.
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 no output schema, the description explains what gets returned ('all source files'). With 5 optional filter parameters and clear differentiation from siblings, the description provides sufficient context for invocation. Minor gap: could explicitly note that all parameters are optional filters, though this is inferable from schema.
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 100%, with all 5 parameters fully documented in the schema (name, chain, category, platform, auth_method). The description does not add parameter-specific semantics, but the schema carries the full burden appropriately. Baseline 3 applies.
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 specific verb 'Fetch' with clear resource 'complete source code of a Web3Auth integration example' and scope 'from GitHub'. It effectively distinguishes from siblings like get_sdk_reference and get_doc by specifying 'example' content.
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?
Explicitly states preference hierarchy: 'Examples are the PRIMARY reference for integration patterns — always prefer example code over raw SDK source'. This directly guides selection over sibling tool get_sdk_reference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_sdk_referenceARead-onlyIdempotentInspect
Fetch SDK source code (type definitions, interfaces, hooks) from the open-source Web3Auth SDK repos. Use for REFERENCE and DEBUGGING only — to verify exact type shapes, constructor signatures, available hooks, and error types. Do NOT use this to discover features; many SDK options are internal or legacy. Always use get_example first for integration patterns.
| Name | Required | Description | Default |
|---|---|---|---|
| focus | No | What kind of source to focus on. 'types' = interfaces/types (default, most useful). 'hooks' = React hooks / Vue composables. 'errors' = error types. 'main-class' = SDK implementation. 'all' = everything. | types |
| module | No | Specific SDK module to fetch, e.g. 'core-types', 'react-hooks', 'modal-types', 'main-class'. Omit to get default type definitions. Call without module first to see available modules. | |
| platform | Yes | Target platform SDK to fetch source for |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read-only/idempotent behavior, while the description adds crucial context about data quality ('many SDK options are internal or legacy') and source provenance ('open-source Web3Auth SDK repos'). It explains what the agent will actually receive (constructor signatures, error types) without contradicting the safety annotations.
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?
Three sentences with zero waste: first establishes function, second gives constraints/warnings, third provides sibling alternative. Information is front-loaded and every clause earns its place. No redundant filler despite covering complex usage guidance.
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?
Comprehensive for a reference-fetching tool: it explains return values (compensating for missing output schema), warns about legacy data pitfalls, and differentiates from siblings. Minor gap: it does not mention cache behavior or failure modes (e.g., invalid platform), though openWorldHint implies external dependency.
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?
With 100% schema description coverage, the baseline is appropriately 3. The description mentions 'type definitions, interfaces, hooks' which semantically aligns with the 'focus' enum values, but does not add syntax details, validation rules, or examples beyond what the schema already provides.
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 opens with specific verbs ('Fetch') and resources ('SDK source code', 'type definitions, interfaces, hooks') from specific sources ('open-source Web3Auth SDK repos'). It clearly distinguishes from sibling tool get_example by stating 'Always use get_example first for integration patterns', making the scope unambiguous.
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?
Explicitly states when to use ('REFERENCE and DEBUGGING only', 'to verify exact type shapes') and when NOT to use ('Do NOT use this to discover features'). It names the specific alternative tool ('get_example') for the preferred workflow, providing clear decision criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_communityARead-onlyIdempotentInspect
Search or fetch posts from the MetaMask Embedded Wallets community forum (builder.metamask.io). Use for troubleshooting real user issues, finding workarounds, and checking if an issue is known. Provide a query to search or a topic_id to read the full discussion.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Search query, e.g. 'popup blocked safari', 'JWT error', 'Android unstable connection' | |
| topic_id | No | Discourse topic ID to fetch the full discussion thread |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnly/idempotent/openWorld, so description adds valuable behavioral context: it specifies the external domain (builder.metamask.io), clarifies the dual-mode nature (search via query OR fetch specific thread via topic_id), and indicates content type (posts, discussions). No contradictions with annotations.
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?
Three sentences with zero waste: first defines scope and resource, second provides usage context, third explains parameter selection. Information is front-loaded and every clause earns its place. Appropriate length for the tool's 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?
For a 2-parameter search tool with comprehensive annotations covering safety profile, the description is complete. It covers purpose, usage context, parameter semantics, and data source. Absence of output schema is acceptable as the description indicates return content ('posts', 'full discussion').
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 100%, establishing baseline 3. Description elevates this by explaining the functional distinction between parameters: 'query to search' versus 'topic_id to read the full discussion.' This semantic mapping helps agents understand the mutually exclusive usage pattern beyond the raw schema definitions.
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?
Description clearly states the tool searches or fetches posts from the 'MetaMask Embedded Wallets community forum (builder.metamask.io)'. It uses specific verbs (search/fetch) and identifies the exact resource type (community posts), distinguishing it from siblings like search_docs or get_doc which handle official documentation.
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?
Explicitly states when to use: 'for troubleshooting real user issues, finding workarounds, and checking if an issue is known.' This differentiates community content from official documentation. Missing explicit 'when not to use' or direct sibling comparisons, though the domain specificity ('community forum') provides clear contextual boundaries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_docsARead-onlyIdempotentInspect
Search MetaMask Embedded Wallets (Web3Auth) documentation and examples. Use for SDK discovery, feature lookup, and finding relevant examples. Returns doc page links with snippets and matching example projects.
| Name | Required | Description | Default |
|---|---|---|---|
| chain | No | Filter examples by blockchain family | |
| query | Yes | What you are looking for -- e.g. 'React custom auth', 'Android deep linking', 'JWT grouped connections' | |
| category | No | Filter examples by category | |
| platform | No | Filter examples by platform |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnly/idempotent/openWorld hints. Description adds valuable return value disclosure ('doc page links with snippets and matching example projects') beyond annotations. No contradictions with safety hints. Does not disclose rate limits or pagination, but annotations cover core behavioral 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?
Three sentences with zero waste: sentence 1 defines action/resource, sentence 2 specifies use cases, sentence 3 explains return values. Front-loaded with core functionality. Every sentence earns its place.
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?
Comprehensive for a search tool: covers 4 well-documented parameters (via schema), explains return structure despite lacking output schema, and annotations cover safety profile. Minor gap: no mention of result ranking or pagination limits.
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 100% with detailed enums and examples (e.g., query parameter includes 'React custom auth' example). Description does not add parameter-specific semantics beyond schema, which is appropriate given complete schema coverage establishes baseline 3.
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?
Specific verb (Search) + exact resource (MetaMask Embedded Wallets/Web3Auth docs/examples) + scope (discovery/feature lookup). Distinguishes from sibling 'get_doc' and 'get_example' by emphasizing search/discovery functionality versus direct retrieval.
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?
Provides clear positive use cases ('SDK discovery, feature lookup, finding relevant examples') establishing when to use. Lacks explicit negative constraints or named alternatives (e.g., 'don't use for specific doc retrieval, use get_doc instead'), though the discovery vs. retrieval distinction is implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.