Claude MCP Server

Anthropic Claude Messages API MCP server — chat, vision, web search, extended thinking

Local serverstdio

What is the Claude MCP server?

Claude MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Anthropic Claude Messages API MCP server — chat, vision, web search, extended thinking.

What you get

An MCP (Model Context Protocol) server for the Anthropic Claude Messages API. Built in Rust, it exposes chat, vision, live web search, and model listing as MCP tools — so any MCP client (Claude Desktop, Claude Code, etc.) can consult Claude as a tool.

What the assistant can call

Once Claude is connected, these are the calls the assistant has available:

  • chat — Send a message to Claude. Supports multi-turn history, a system prompt, model selection, and extended thinking via thinking_budget
  • chat_with_vision — Analyse an image given an image URL and a text prompt
  • chat_with_search — Chat with live web search — Claude searches server-side and answers with cited sources
  • list_models — List available Claude models and their IDs (cached for 5 minutes)

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

Configuration and credentials

Choosing this one

Plenty of search and retrieval servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Claude's toolset — chat, chat_with_vision, chat_with_search and 1 more — is a fair guide to whether it matches your workflow. It is maintained by codeChap; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the claude mcp server does with a few real requests.

Available tools

ToolWhat it does
chatSend a message to Claude. Supports multi-turn history, a system prompt, model selection, and **extended thinking** via thinking_budget.
chat_with_visionAnalyse an image given an image URL and a text prompt.
chat_with_searchChat with live **web search** — Claude searches server-side and answers with cited sources.
list_modelsList available Claude models and their IDs (cached for 5 minutes).

Configuration

Example prompts to try

  • Use Claude to chat.
  • Use Claude to chat with vision.
  • Use Claude to chat with search.

Frequently asked questions

It connects Claude to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (chat, chat_with_vision, chat_with_search, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Claude directly.