Community MCP server for the Anthropic API.
npx -y @anthropic/mcp-server
{
"mcpServers": {
"anthropic": {
"env": {
"ANTHROPIC_API_KEY": "sk-ant-xxx"
},
"args": [
"-y",
"@anthropic/mcp-server"
],
"command": "npx"
}
}
}Analyze an image with Claude Vision
{
"type": "object",
"required": [
"image_url",
"prompt"
],
"properties": {
"prompt": {
"type": "string"
},
"image_url": {
"type": "string"
}
}
}// Input
{
"prompt": "Describe this chart",
"image_url": "https://example.com/chart.png"
}// Output
{
"description": "A bar chart showing Q1 revenue growth of 15%"
}Generate text with Claude models
{
"type": "object",
"required": [
"model",
"messages"
],
"properties": {
"model": {
"type": "string"
},
"messages": {
"type": "array"
}
}
}// Input
{
"model": "claude-sonnet-4-6",
"messages": [
{
"role": "user",
"content": "Hello"
}
]
}// Output
{
"usage": {
"input_tokens": 10
},
"content": "Hello! How can I help?"
}Generate embeddings with Voyage
Community MCP server for the Anthropic API.
Anthropic provides 3 tools including analyze_image, chat_completion, create_embedding.
Anthropic offers a free tier with 100 calls per month. For higher usage, paid plans start at €0/month.
You can install Anthropic using the following command: npx -y @anthropic/mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
{
"type": "object",
"required": [
"input"
],
"properties": {
"input": {
"type": "string"
}
}
}// Input
{
"input": "MCP marketplace for agents"
}// Output
{
"embedding": [
0.1,
0.2,
0.3
]
}Anthropic is listed under the AI & Machine Learning category in the AgentForge MCP registry.
Anthropic has a current uptime of 99.9% with an average response time of 1100ms.
To connect Anthropic, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Anthropic's tools via the Model Context Protocol.