K
Keyblind
Encrypted secrets vault that resolves credentials at runtime without exposing them to LLMs.
Share:
About
Encrypted secrets vault that resolves credentials at runtime without exposing them to LLMs.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Keyblind.
- What problem does Keyblind solve for developers?
- Keyblind secures sensitive credentials. It prevents large language models (LLMs) from directly accessing these secrets during runtime by resolving them only when needed. This enhances security posture for applications using LLMs.
- How can I integrate Keyblind with a client like Cline?
- Keyblind uses stdio for transport. You would configure Cline to communicate with Keyblind via standard input and output streams. Consult the Cline documentation for specific instructions on stdio MCP client configuration.
- Does Keyblind require any API keys or authentication?
- No, Keyblind's description and available information do not indicate any required API keys or authentication for its operation. It appears to function without external authentication mechanisms.
- What are the common usages or capabilities of Keyblind?
- Keyblind's primary capability is secure credential management within LLM workflows. It acts as an encrypted vault, enabling on-demand resolution of secrets. This is ideal for development environments where sensitive data must be protected from direct LLM exposure.
- Is there a cost associated with using Keyblind?
- Keyblind is an open-source project hosted on GitHub, implying it is generally free to use. However, deployment and operational costs will depend on your specific infrastructure and how you choose to host and manage the vault.
Install Keyblind
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"keyblind": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-keyblind"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"keyblind": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-keyblind"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"keyblind": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-keyblind"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.