Clavis MCP Server: Secure Credential Management for Claude Desktop

✍️ OpenClawRadar📅 Published: April 4, 2026🔗 Source
Clavis MCP Server: Secure Credential Management for Claude Desktop
Ad

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
Ad

Supported Services

OpenAI, Anthropic, Stripe, GitHub, Brave Search, Kalshi, Coinbase, plus any custom OAuth2 provider.

Installation

Install via npm:

npm install -g @clavisagent/mcp-server

Add 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

Ad

👀 See Also

🦀
Tools

MTP + Unified Memory Boosts llama.cpp Inference 30% on RTX 5090

Enabling MTP speculation alongside GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 pushes Qwen3.6-27B Q8_0 from 49 to 64 tok/sec on an RTX 5090 with 128GB system RAM.

OpenClawRadar
PromptFlow Voice: Speak Hindi, Get Structured Claude Code Prompts — Built with Claude Code
Tools

PromptFlow Voice: Speak Hindi, Get Structured Claude Code Prompts — Built with Claude Code

A developer used Claude Code and Codex to build PromptFlow Voice — a desktop app that converts natural Hindi speech into structured dev prompts for Claude Code, or ready-to-send emails for Gmail. The demo shows a Hindi voice request producing an English Claude Code prompt about socket reconnection logic with exponential backoff.

OpenClawRadar
Log Reducer MCP Server Cuts Token Usage When Claude Code Reads Logs
Tools

Log Reducer MCP Server Cuts Token Usage When Claude Code Reads Logs

Log Reducer is an MCP server that processes log files server-side before sending reduced output to Claude Code, avoiding raw logs in the context window. It applies 19 deterministic transforms that compress logs by 50-90%, with a 2000-line log representing 20,000+ tokens removed from sessions.

OpenClawRadar
SuperHQ: Run AI coding agents in isolated microVM sandboxes
Tools

SuperHQ: Run AI coding agents in isolated microVM sandboxes

SuperHQ is an open source Rust/GPUI app that runs AI coding agents (Claude Code, OpenAI Codex, Pi) in isolated microVM sandboxes. Each agent gets a full Debian VM, mounts project dirs read-only, and never sees host API keys — they're injected via an auth gateway proxy.

OpenClawRadar