Claude supports MCP (Model Context Protocol) natively. Jarvis SDK is a full MCP server with 700+ tools — connect Claude Desktop, Claude Code, or the API to jarvissdk.com/api/mcp and your agent instantly gains hundreds of capabilities.
Sign up at jarvissdk.com and create an API key.
Add Jarvis SDK as an MCP server in your claude_desktop_config.json.
Claude will automatically discover and use Jarvis SDK tools when relevant to your conversation.
Copy this into your project to get started immediately.
// Claude Desktop MCP Configuration
// Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
// or %APPDATA%/Claude/claude_desktop_config.json (Windows)
{
"mcpServers": {
"jarvis-sdk": {
"command": "npx",
"args": ["-y", "@jarvis-sdk/mcp-bridge"],
"env": {
"JARVIS_API_KEY": "jsk_your_api_key_here",
"JARVIS_BASE_URL": "https://jarvissdk.com"
}
}
}
}
// --- OR use the REST API directly with Claude API ---
import Anthropic from "@anthropic-ai/sdk";
const anthropic = new Anthropic();
const tools = [{
name: "jarvis_execute",
description: "Execute a tool from Jarvis SDK marketplace (700+ modules)",
input_schema: {
type: "object" as const,
properties: {
module: { type: "string", description: "Module name" },
action: { type: "string", description: "Action to execute" },
params: { type: "object", description: "Action parameters" },
},
required: ["module", "action"],
},
}];
const message = await anthropic.messages.create({
model: "claude-sonnet-4-6",
max_tokens: 1024,
tools,
messages: [{ role: "user", content: "Encode 'hello world' as base64" }],
});
// Handle tool_use blocks by calling jarvissdk.com/api/v1/modules/{module}/executeClaude was built for MCP. Jarvis SDK speaks MCP natively — no adapters, no translation layers, just direct tool access.
Add Jarvis SDK to Claude Desktop with a single config entry. All 700+ tools appear automatically.
Jarvis SDK tools work in Claude Code sessions — your coding agent gains access to hashing, encoding, text processing, and more.
Full streaming support for Claude's tool_use blocks. Process tool calls incrementally for responsive UX.
Jarvis SDK implements the MCP specification (JSON-RPC 2.0) faithfully. It's listed in the MCP directory and works with any MCP-compatible client.
Claude sees all available tools (curated per your plan). The MCP server supports tools/list and tools/call for full discovery.
Yes. Use the REST API integration for production workloads. The MCP config is ideal for development and Claude Desktop use.
Free tier includes 1,000 executions/month. No credit card required.