Clavis MCP Server: Secure Credential Management for Claude Desktop

Clavis is an MCP server built to solve credential management issues in Claude Desktop. Instead of storing API keys directly in Claude Desktop's config file or dealing with OAuth tokens expiring mid-conversation, Clavis acts as a credential manager between Claude Desktop and your APIs.
How It Works
You store credentials once in Clavis (encrypted with AES-256), and MCP servers pull them as needed with automatic token refresh. The developer built the entire MCP server implementation using Claude Code, including the FastAPI backend and credential encryption logic.
Key Features
- Auto token refresh — OAuth tokens refresh before expiry
- Rate limiting — distributed limits across multiple agent instances
- Audit logging — complete trail of credential access
- Dry-run mode — check status without consuming API rate limits
- Encrypted storage — AES-256 encryption at rest
Supported Services
OpenAI, Anthropic, Stripe, GitHub, Brave Search, Kalshi, Coinbase, plus any custom OAuth2 provider.
Installation
Install via npm:
npm install -g @clavisagent/mcp-serverAdd to Claude Desktop config:
{
"mcpServers": {
"clavis": {
"command": "clavis-mcp",
"env": {
"CLAVIS_API_KEY": "your-api-key-here"
}
}
}
}The tool is free to try at clavisagent.com/register with a free tier available. Full documentation is at clavisagent.com/docs/mcp.html, and it has been submitted to the official MCP server directory.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude AI Product Launch Skill: Structured Playbooks for AI Product Launches
A free Claude skill provides six battle-tested launch playbooks covering strategy, preparation, messaging, and channel execution for AI product launches. The repository includes English and Chinese materials organized by launch stage.

Cloudflare Dynamic Worker Loader: Sandboxing AI Agents with Isolates
Cloudflare's Dynamic Worker Loader API, now in open beta, allows Workers to instantiate new Workers with runtime-specified code in isolated sandboxes using V8 isolates, offering 100x faster startup than containers and no global concurrency limits.

Fixing OpenClaw's Blind Spots: Building a Sitemap to Fetch All Anthropic Blogs
OpenClaw's browser tool fails to discover all Anthropic blogs because they're hosted across multiple URLs. A user fixed this by feeding a generated sitemap, then packaged the solution as a shareable skill.

Using an MCP Server to Optimize React Native Apps with Claude Code
An MCP server streams live runtime data from a React Native app into Claude Code, identifying performance issues like Zustand store thrashing and unnecessary re-renders.