auth-mcp
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., "@auth-mcprecommend a credential for OpenAI summarization"
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.
auth-mcp
A secure MCP server that stores all your API keys and auth credentials in one place, retrievable by any MCP client (Goose, Claude Code, Cursor, Codex, Gemini CLI...). Built with FastMCP so it can be hosted on Prefect Horizon and reached over HTTP at a URL like https://<name>.fastmcp.app/mcp.
Features
Tool | Description |
| Store or update a credential |
| Retrieve a credential (masked by default; |
| List names + metadata only — never values |
| Search by name/description — metadata only |
| MCP sampling — asks goose's AI to pick the best credential for a task |
| Delete a credential |
| Health check |
Related MCP server: MCP-Secrets-Vault
Security model
Encrypted at rest — the
filebackend encrypts every value with Fernet (AES-128-CBC + HMAC), key derived fromAUTH_MCP_MASTER_KEYvia PBKDF2-HMAC-SHA256 (600k iterations). The vault file never contains a plaintext secret.List/search never leak values — only names, descriptions and timestamps.
Masked by default —
auth_getreturns********last4unless you explicitly passmask=False.Remote access is authenticated by the hosting platform (FastMCP/Prefect Horizon).
Optional
prefectbackend stores secrets as Prefect CloudSecretblocks (durable, encrypted at rest by Prefect, RBAC-scoped) — ideal for the hosted deployment.
MCP sampling
auth_recommend(task) uses MCP sampling: the server sends the task plus a list of available credentials (names + descriptions only — values never leave the vault) back to goose's LLM, which returns the single best match and its reasoning. This turns the vault into a smart credential router:
auth_recommend(task="call OpenAI to summarize this email thread")
# -> {"ok": true, "recommendation": "openai",
# "reasoning": "Task mentions OpenAI summarization.", "available": [...]}
# then: auth_get(name="openai", mask=False)Sampling is automatically available in goose (no configuration needed) and gracefully degrades — if the client doesn't support sampling, the tool returns the full list instead.
⚠️ Never commit
.env, the vault file, or real keys. Everything sensitive is git-ignored.
Project layout
auth-mcp/
├── pyproject.toml # deps + entry point (also used as Horizon "requirements")
├── README.md
├── .env.example # copy to .env and fill in
├── src/auth_mcp/
│ ├── config.py # env config (backend, master key, vault path)
│ ├── storage.py # EncryptedFileStore + PrefectSecretStore backends
│ └── server.py # FastMCP server + tools (Horizon server path)
└── tests/test_storage.pyRun locally
cd auth-mcp
python -m venv .venv
.venv\Scripts\activate # Windows (macOS/Linux: source .venv/bin/activate)
pip install -e ".[test]"
# generate a master key and run the server
set AUTH_MCP_MASTER_KEY=CHANGE-ME-strong-passphrase
python -m auth_mcp.serverTest it:
pytest -qThe server speaks MCP over stdio. Add it to your local Goose/Claude Code/Cursor config, then try:
auth_set(name="openai", value="sk-...", description="OpenAI API key")
auth_list()
auth_get(name="openai") # -> ********1234
auth_get(name="openai", mask=False)Deploy to Prefect Horizon
Prefect Horizon hosts FastMCP servers directly from a GitHub repo. Steps:
Push this project to GitHub
cd auth-mcp git init && git add . && git commit -m "Initial auth-mcp" # create a repo on github.com and: git remote add origin git@github.com:<you>/auth-mcp.git git push -u origin mainSign in to horizon.prefect.io (create an account if needed).
Create a new server and point it at your repo:
Repository:
<you>/auth-mcpServer path:
src/auth_mcp/server.pyRequirements:
pyproject.toml
Set environment variables in the Horizon UI:
Variable
Value
AUTH_MCP_MASTER_KEYA strong passphrase (see below)
AUTH_MCP_BACKENDprefect(recommended for hosted: secrets live in Prefect Cloud)PREFECT_API_URLhttps://api.prefect.cloud/api/accounts/<ACCOUNT_ID>/workspaces/<WORKSPACE_ID>PREFECT_API_KEYA Prefect Cloud API key that can read/write
SecretblocksGenerate a master key:
python -c "import secrets; print(secrets.token_urlsafe(32))"Deploy, then copy your server URL, e.g.
https://auth-mcp-xxxx.fastmcp.app/mcp.Point your MCP client at the URL (HTTP transport):
Goose:
goose mcp add auth-mcp --transport http https://auth-mcp-xxxx.fastmcp.app/mcpClaude Code:
claude mcp add auth-mcp --transport http https://auth-mcp-xxxx.fastmcp.app/mcpCursor: add to
.cursor/mcp.jsonwith"url": "https://auth-mcp-xxxx.fastmcp.app/mcp"
Any client on your team can now read/write shared credentials through one hosted endpoint.
Backends
file(default): encrypted vault on disk (AUTH_MCP_VAULT_PATH, default.auth_vault.json). Zero external services; good for local use and simple self-hosting.prefect: each credential is a PrefectSecretblock. Install withpip install "auth-mcp[prefect]". RequiresPREFECT_API_URL+PREFECT_API_KEY. Best for the Horizon deployment since secrets survive restarts and are managed by Prefect Cloud.
Security checklist
Use a long, unique
AUTH_MCP_MASTER_KEYand store it in a password managerNever commit
.envor*.jsonvault filesGrant the Horizon/Prefect API key only the permissions it needs (Secret blocks)
Rotate keys regularly (
auth_setoverwrites in place)Keep
mask=Trueunless a full value is genuinely required
Available Tools
7 toolsauth_deleteA
Permanently delete a credential from the vault.
Args: name: Credential name.
Returns: Confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| name | 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 explicitly says 'permanently delete,' disclosing the destructive and irreversible nature of the operation. It also states the return type (confirmation). However, with no annotations, it lacks additional behavioral context such as required permissions or error behavior.
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 and well-structured with an Args/Returns format. Every sentence adds value, and the purpose is front-loaded.
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 simple delete operation with one parameter, the description covers the essential elements: action, parameter meaning, and return value. It lacks potential error scenarios, but given the tool's simplicity, it is reasonably complete.
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 the description must compensate. It explains the single parameter 'name' as 'Credential name,' which clarifies the semantics beyond the bare schema. For a simple one-parameter tool, this is adequate.
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 (permanently delete) and the resource (a credential from the vault). This distinguishes it from sibling tools like auth_set, auth_list, and auth_get.
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. It does not mention prerequisites, such as the credential needing to exist, nor does it explain when to prefer delete over other auth tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
auth_getA
Retrieve a credential value.
Args:
name: Credential name.
mask: If True (default), return a masked form (********last4).
Set to False to get the full value.
Returns: The credential value (masked or full).
| Name | Required | Description | Default |
|---|---|---|---|
| mask | No | ||
| name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of disclosure. It explicitly describes the masking default behavior and the ability to retrieve the full value, which goes beyond the schema. It does not mention error handling or permissions, but the core behavioral trait is well covered.
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 tidy docstring with a one-sentence summary, an Args section, and a Returns section. Every sentence is informative, with no redundancy or filler, making it efficient and easy to parse.
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, the description does not need to detail return types. It covers the primary behavior (retrieval with masking) and parameter semantics sufficiently. It lacks discussion of edge cases like missing credentials, but the overall context is complete for a simple retrieval 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 description coverage is 0%, so the description must compensate. It provides a clear explanation for 'name' (Credential name) and thoroughly explains the 'mask' parameter, including the default and the resulting masked format. This adds significant meaning 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 starts with 'Retrieve a credential value,' which is a specific verb and resource, clearly distinguishing it from siblings like auth_list (listing) and auth_search (searching). It also explains the mask behavior, further clarifying its purpose.
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 clearly indicates this tool is for retrieving a single credential by name, and explains the mask option. It does not explicitly name alternatives or exclusions, but the context is unambiguous given the sibling tool names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
auth_healthA
Health check for the auth-mcp server.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 the full burden. It only states 'Health check' without disclosing what the check entails, whether it is read-only, what information it returns, or if any side effects exist. This leaves significant ambiguity about the tool's behavior.
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 that front-loads the purpose with no unnecessary words. It earns its place perfectly.
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 (zero params, output schema present), the description is minimally viable but lacks detail about what 'health' means (e.g., connectivity, uptime) or how the result should be interpreted. The output schema may cover return values, but the description doesn't reference it, leaving the agent to guess.
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 tool has zero parameters, and the schema coverage is 100% (empty schema). Per baseline rules, a 4 is appropriate since there are no parameter semantics to convey 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 clearly states the tool's purpose: a health check for the auth-mcp server. The verb 'check' and resource 'auth-mcp server' are specific, and it distinguishes itself from sibling auth operation tools by focusing on health status.
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 when to use: when needing to verify the health of the auth-mcp server. While it doesn't explicitly compare to siblings, the context is clear that this is a diagnostic tool, distinct from the operational auth tools listed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
auth_listA
List all stored credentials (names + metadata only, never values).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It explicitly discloses that values are never returned, which is a critical behavioral safety trait. It does not cover prerequisites or side effects, but for a read-only list operation, the key transparency is addressed.
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, front-loaded sentence that is information-dense and free of extraneous words. Every part adds value: action, scope, content list, and exclusion of secrets.
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, zero parameters, and existence of an output schema, the description fully covers the essential context. It tells the agent what to expect (names and metadata, not values) without over-explaining, leaving return format details to the output 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?
The tool takes zero parameters, and the schema is fully covered by having no properties. The description adds meaningful context about what is included (names + metadata) and excluded (values), going beyond the minimal baseline for parameterless tools.
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 a specific action ('List all stored credentials') with a clear scope (all) and content boundary (names + metadata only). This distinguishes it from siblings like auth_get, auth_search, and auth_delete, making the purpose 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?
The description clearly indicates this tool is for listing all credentials, which implies its use case versus alternatives like auth_search or auth_get. However, there is no explicit mention of when not to use it or alternative tools, leaving it slightly below the highest bar.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
auth_recommendA
Ask goose's AI to pick the best stored credential for a task.
This tool uses MCP sampling: it sends the task plus the list of
available credentials (names + descriptions only — values never leave
the vault) back to goose's LLM, which returns the single best match
and the reasoning. Retrieve the value afterwards with
auth_get(name, mask=False).
If the client does not support sampling, the tool degrades gracefully and returns the full list so the caller can choose manually.
Args: task: What the credential will be used for, e.g. "call OpenAI to summarize this email thread".
Returns:
recommendation (credential name or None), reasoning, and
available (all credential names).
| Name | Required | Description | Default |
|---|---|---|---|
| task | 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 provided, the description fully carries the burden of behavioral disclosure. It clearly states that values never leave the vault, that it uses MCP sampling, that it sends only names and descriptions to the LLM, and that it degrades gracefully to returning the full list. This is comprehensive for a read-only recommendation 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?
The description is well-structured with a summary, mechanism, fallback behavior, and Args/Returns sections. It is slightly longer than absolutely necessary but every sentence adds value, and the structure makes it easy to scan.
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 tool with one parameter and a non-trivial output shape, the description fully covers the return fields (recommendation, reasoning, available), the security model, and the graceful degradation path. It is complete given the complexity and lack of annotations.
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 'task' has no schema description (0% coverage), so the tool description must compensate. It does so effectively with 'What the credential will be used for' and a concrete example, adding meaning beyond the bare schema definition.
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 a clear, specific statement: 'Ask goose's AI to pick the best stored credential for a task.' This distinguishes it from sibling tools like auth_get (which retrieves values) and auth_search (which searches), and it explains the unique AI-driven selection mechanism.
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 provides context for use ('when you need to pick the best credential for a task') and explicitly tells the caller to retrieve the value afterward with auth_get. It also describes graceful degradation when sampling is unsupported, but does not explicitly exclude alternatives or provide when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
auth_searchA
Search stored credentials by name or description (metadata only).
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It does add value by disclosing 'metadata only', indicating a read-only behavior and that secrets are not returned. However, it does not cover permissions, match behavior, or handling of no results.
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, focused sentence with no redundant words. It is appropriately sized for a simple tool.
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 simplicity of the tool (one parameter, output schema present), the description covers the essential purpose and search scope. It does not explain return values, but the output schema can cover that, so the description is sufficiently complete.
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 schema has one required parameter 'query' with no description (0% coverage). The description compensates by explaining that the query matches name or description, giving the parameter semantic meaning. It doesn't specify match type, but that is acceptable for a search tool.
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 ('Search'), the resource ('stored credentials'), and the scope ('by name or description (metadata only)'). This distinguishes it from siblings like auth_get (which likely retrieves full credentials) and auth_list (which lists all credentials).
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 by noting the search is by name/description and metadata only, but it does not explicitly mention alternatives or when to use this tool versus auth_get or auth_list. The guidance is inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
auth_setA
Create or update an API key / credential in the vault.
Args: name: Unique name for the credential, e.g. "openai" or "stripe-live". value: The secret value (API key, token, password...). Never echoed back. description: Optional human-readable note shown in listings.
Returns: Metadata for the saved credential (with a masked preview only).
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| value | Yes | ||
| description | 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 carries the full transparency burden. It discloses that the value is never echoed back and that only masked metadata is returned, which is important security behavior. However, it does not specify error handling, idempotency, or prerequisites, so it is not fully comprehensive.
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 tightly organized with separate sections for Args and Returns, using short lines and no redundant text. Each sentence adds value, and the format makes it easy to scan and parse.
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 3 parameters, an output schema present, and no annotations, the description provides enough to select and use the tool correctly. It covers purpose, argument semantics, and return behavior. It omits edge-case behavior like what happens if a name already exists, but that is minor given the 'create or update' phrasing.
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% (no parameter descriptions in schema), so the description is the sole source of parameter semantics. It provides meaningful details: name is unique with examples, value is secret and not echoed, description is optional and used for human-readable notes. This far exceeds the schema's bare type 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?
The description clearly states 'Create or update an API key / credential in the vault' which is a specific verb (create/update) with a resource (API key/credential) and location (vault). This distinguishes it from siblings like auth_list, auth_get, and auth_delete that have different actions.
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 storing new credentials or updating existing ones, but it does not explicitly name alternatives or exclusions such as 'use auth_get to retrieve' or 'do not use for deletion'. Clear context is provided, but no when-not guidance.
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. Dates show when Glama detected each change.
7 tool updates
v0.1.0- First observed
auth_delete - First observed
auth_get - First observed
auth_health - First observed
auth_list - First observed
auth_recommend - First observed
auth_search - First observed
auth_set
TDQS
Each tool has a clearly distinct purpose: set (create/update), get (retrieve value), list (enumerate metadata), search (query metadata), delete (remove), recommend (AI selection), and health (server status). No two tools perform the same action; even the related list/search/recommend are distinguished by their inputs and outputs.
All tools follow a consistent 'auth_<verb>' pattern (set, list, search, recommend, delete, get, health). The verb is always lowercase and after the namespace prefix, making the tool set predictable and easy to navigate.
Seven tools is ideal for a credential vault: it covers the full lifecycle (create, read, update/delete, list/search) plus health and an AI recommendation feature. Every tool earns its place without redundancy or bloat.
The surface fully covers credential management: creation/updating (auth_set), retrieval (auth_get), listing (auth_list), searching (auth_search), deletion (auth_delete), and an intelligent selection helper (auth_recommend). No essential operation is missing, and the workflow between recommend and get is explicitly documented.
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
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Connect MCP clients to 2,000+ AI models without managing provider API keys.
Cloud-hosted MCP server for secure AI access to enterprise data sources via CData Connect AI.
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceSecrets management MCP server that injects credentials into API requests for AI agents, enforcing policies and logging all activity without exposing raw keys.19730MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents and MCP clients to securely store, retrieve, and manage encrypted credentials without hardcoding API keys.-
- FlicenseNot gradedqualityBmaintenanceAn encrypted secret vault and MCP gateway that securely stores API keys and injects them into upstream MCP servers, so AI IDEs never see raw credentials.9-
- AlicenseNot gradedqualityCmaintenanceMCP server for AI-native credential management, enabling agents to securely store, retrieve, and manage API keys with encryption, spending budgets, and audit logging.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KB01111/auth-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server