
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@clavisagent/mcp-server
Advanced tools
MCP server for Clavis — secure credential management for Claude Desktop
MCP server for Clavis — secure credential management for Claude Desktop.
Credentials are injected server-side. Claude never sees raw API keys.
npm install -g @clavisagent/mcp-server
Add to your claude_desktop_config.json:
{
"mcpServers": {
"clavis": {
"command": "npx",
"args": ["-y", "@clavisagent/mcp-server"],
"env": {
"CLAVIS_API_KEY": "eyJ...",
"CLAVIS_API_URL": "https://your-clavis-instance.com"
}
}
}
}
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonGet your API key from POST /v1/auth/login — use the access_token (JWT), not the cla_... key shown at registration.
list_servicesList all services with stored credentials.
check_credential_statusCheck credential health without making any external API call.
service_name: "stripe"
→ Valid: yes, Status: healthy, Expires in: 58 minutes
call_service ← RecommendedMake an API call with server-side credential injection. The credential never reaches Claude.
service_name: "stripe"
method: "GET"
url: "https://api.stripe.com/v1/balance"
→ Status: 200, Body: {"object": "balance", ...}
get_credentials ← LegacyReturns raw credential data. Use call_service instead — it keeps secrets out of the conversation entirely.
If running Clavis locally:
{
"mcpServers": {
"clavis": {
"command": "node",
"args": ["/path/to/clavis-mcp/dist/index.js"],
"env": {
"CLAVIS_API_KEY": "eyJ...",
"CLAVIS_API_URL": "http://localhost:8000"
}
}
}
}
call_service tool (server-side credential injection)call_service is the recommended tool for prompt injection immunitylist_services, check_credential_status, get_credentialsMIT
FAQs
MCP server for secure credential management. Handles encrypted storage, auto token refresh, and rate limiting for Claude Desktop and AI agents.
We found that @clavisagent/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.