ClaudeChatGPTPerplexityGeminiMicrosoft CopilotRaycastMeta AIGrokZ.aiQwenKimi
DeepSeekMistralCursorVS CodeWindsurfJetBrainsClineLovableVercel AI SDKLangChain

Use Anthropic with your AI.

Connect your account once and let the AI you already use work with it, without building another integration. Access Claude models via Anthropic API. send messages, count tokens, manage batches and discover models from any AI agent.

Included with plan

Ask AI about this Connector

Developed, maintained, and hosted by Vinkius.

MCP VERIFIED · PRODUCTION READY · VINKIUS GUARANTEED

Waiting for input…

Works with modern AI clients that support MCP, including ChatGPT, Claude, Cursor, and more.

ChatGPTClaudeCursorPerplexityGeminiMicrosoft CopilotRaycastMeta AI

Complete set · 6 capabilities

The complete Anthropic capability set.

These are the exact actions your AI can choose when you ask it to work with Anthropic.

Capability set01 / 02

01-03

3 capabilities in this set.

Part of 6 available through Anthropic.

  1. 01

    Get batch message

    Returns the batch status (in_progress, succeeded, expired, canceling, canceled, failed), request counts (total, succeeded, errored) and individual results. Use the batch ID returned from create_batch_message. Get the status of a batch message request

  2. 02

    List models

    Each model returns its ID (e.g. "claude-sonnet-4-20250514"), display name, creation date and capabilities. Use this to discover which models are available and their IDs for use with the send_message capability. List all available Anthropic Claude models

  3. 03

    Send message

    Requires the model ID (e.g. "claude-sonnet-4-20250514") and messages array in JSON format. Each message must have a "role" ("user" or "assistant") and "content" (text or array of content blocks). Optionally set max_tokens (default 1024), system prompt and temperature (0-1). Returns the assistant's response text. Send a message to Claude (Messages API)

Capability set02 / 02

04-06

3 capabilities in this set.

Part of 6 available through Anthropic.

  1. 04

    Cancel batch message

    Requests that have already been completed cannot be cancelled. Provide the batch ID. This is useful if you submitted a large batch by mistake and want to stop further processing to save costs. Cancel an in-progress batch message request

  2. 05

    Count tokens

    Requires the model ID and messages array. Returns the total input token count. Useful for estimating API costs and ensuring messages fit within context limits. Count tokens in a message before sending to Claude

  3. 06

    Create batch message

    Each request in the batch has its own model, messages, max_tokens, etc. This is more cost-effective than individual requests when you have many independent prompts to process. Returns a batch ID for tracking. Use get_batch_message to check progress. Create a batch of message requests to Claude

Observed, not estimated

877ms average. Fast in production.

Anthropic is checked daily against the live service.

Daily averagePeak 1260ms
Aug 20Today
Fastest day
699ms
Slowest day
1260ms
14-day trend
Stable+1%

Connect your client

One URL. Every client.

Activate the Connector, copy your link, and paste it into the client you already use. 6 capabilities arrive ready to run.

Preview access · not provider authentication

The vk_preview_* token belongs to Vinkius preview infrastructure. It lets Claude discover and display the capabilities of Anthropic, so you can see the experience inside your AI.

It does not authenticate your account with Anthropic. Actions requiring credentials or live account data may not run until you activate the Connector and authorize the service.

Anthropic Connector

You're all set. Choose your MCP client and follow the setup instructions.

Connector linkhttps://edge.vinkius.com/vk_preview_olS3uDDLdOw9uiZoTqVqVIoK0UcivzobkVz8mrNA/mcp

Claude Desktop

Follow the steps below to connect in seconds.

  1. 1In Claude Desktop, open Settings → Connectors.
  2. 2Click “Add custom connector” and paste the connector link above as the remote MCP server URL.
  3. 3Click Add and start a new chat — Anthropic capabilities are ready to use.
Configuration · claude_desktop_config.jsonCopy
{
  "mcpServers": {
    "anthropic-alternative-mcp": {
      "url": "https://edge.vinkius.com/vk_preview_olS3uDDLdOw9uiZoTqVqVIoK0UcivzobkVz8mrNA/mcp"
    }
  }
}
  • Claude
  • ChatGPT
  • Cursor
  • VS Code
  • Windsurf
  • Claude Code
  • JetBrains
  • Cline

Step-by-step instructions for each client are in the guide. How to connect

FAQ

Questions Anthropic owners ask.

  • 01

    How do I get an Anthropic API Key?

    Log in to the Anthropic Console, go to Account Settings > API Keys and click Create Key. Copy the key immediately. it starts with sk-ant- and won't be shown again. You can also create workspace-scoped keys to control spending by use case.

  • 02

    What models are available?

    Use the list_models capability to see all available Claude models. Current models include Claude Sonnet 4, Claude Opus 4 and Claude Haiku variants, each with different capabilities, context windows and pricing. The model ID format is like claude-sonnet-4-20250514.

  • 03

    Can I send multi-turn conversations?

    Yes! Pass a messages array with alternating 'user' and 'assistant' roles. Each message has a 'role' and 'content' field. Claude will continue the conversation based on the full message history. Example: [{"role":"user","content":"Hello"},{"role":"assistant","content":"Hi!"},{"role":"user","content":"What's 2+2?"}].

  • 04

    How does batch processing work?

    Use create_batch_message with an array of independent message requests. Each request is processed asynchronously and costs 50% less than individual requests. Use get_batch_message to check progress and results. Batches are ideal when you have many unrelated prompts to process.