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., "@Credential Manager MCP Serverlist all my stored credentials"
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.
π Credential Manager MCP Server
A secure MCP server for managing API credentials locally. Read-only by default with simple JSON storage.
β¨ Features
π Secure by default - Read-only mode prevents accidental changes
π Simple storage -
~/.credential-manager-mcp/credentials.jsonπ§ Easy setup - Interactive shell script
π Multi-instance safe - Always reads fresh data from disk
π― Minimal exposure - Shows only essential data
π Quick Start
1. Install & Configure
Common config (Claude Desktop):
Devlopment config (run from source):
2. Add Credentials
π Available Tools
Read-Only Mode (Default):
list_credentials()- List credentials (id, app name only)get_credential_details(credential_id)- Get full details
Read-Write Mode:
add_credential(app, base_url, access_token, [user_name], [expires])update_credential(credential_id, [fields...])delete_credential(credential_id)
π Usage Examples
βοΈ Configuration
Environment Variables:
CREDENTIAL_MANAGER_READ_ONLY- Set to"false"for write operations (default:"true")
Expiration Format:
"2024-12-31T23:59:59"- ISO datetime"never"- No expiration
π Security
Read-only by default
Local storage only (
~/.credential-manager-mcp/credentials.json)File locking for safe concurrent access
Minimal data exposure in listings
π§ͺ Development
π License
MIT License - see LICENSE file for details.