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

State of Local Deep Research Tools: GPT Researcher and Local Deep Research Lead, STORM and LangChain Projects Stagnant
A Reddit survey of local deep research projects as of May 2026 finds GPT Researcher and LearningCircuit's Local Deep Research most active; STORM and LangChain's Open Deep Research abandoned or semi-abandoned.

MOOSE-Star: A 7B Model and 108K-Paper Dataset for Scientific Hypothesis Discovery – ICML 2026
MiroMind releases MOOSE-Star on Hugging Face: a 7B model (DeepSeek-R1-Distill-Qwen-7B fine-tune) for scientific hypothesis discovery, alongside the 108K-paper TOMATO-Star dataset. Benchmark shows MS-7B achieves 54.34% inspiration retrieval accuracy, beating GPT-5.4 and approaching Gemini-3 Pro.

CLI Tools with AI Agent Compatibility: Skills Directory Approach
A Reddit user shares a method for making CLI tools work with AI coding agents like Claude Code by creating SKILL.md files that teach agents installation, authentication, and usage. The approach addresses common issues like interactive prompts, JSON output, and authentication methods.

Google Research introduces TurboQuant for AI model compression
Google Research has introduced TurboQuant, a compression algorithm that reduces AI model size with zero accuracy loss. It addresses memory overhead in vector quantization and improves key-value cache performance.