AiCore MCP Server

✨ **AiCore** is a comprehensive framework for integrating various language models and embedding providers with a unified interface. It supports both

Local serverstdioPython

What is the AiCore MCP server?

AiCore MCP server exists for a simple reason — assistants are far more useful when they can act on AiCore directly instead of describing what you should do. ✨ AiCore is a comprehensive framework for integrating various language models and embedding providers with a unified interface. It supports both synchronous and.

Setting it up

The server ships on npm as @anthropic-ai/claude-code, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What the assistant can call

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

  • Method — Path
  • GET — /health
  • POST — /query
  • DELETE — /query/{session_id}
  • Sync — llm_config = LlmConfig( provider="openai", model="gpt-4o", api_key="super_secret_openai_key" )
  • Async — async def main(): llm_config = LlmConfig( provider="openai", model="gpt-4o", api_key="super_secret_openai_key" )
  • Prerequisites — The Prerequisites tool exposed by this server
  • Quickstart — config = LlmConfig( provider="claude_code", model="claude-sonnet-4-5-20250929", # No api_key needed — auth is handled by the CLI )
  • Reasoner4All — The Reasoner4All tool exposed by this server

Configuration and credentials

You will need 5 environment variables: BRAVE_API_KEY, CONFIG_PATH, CLAUDE_PROXY_TOKEN, TOOL_CALL_START_TOKEN, TOOL_CALL_END_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.


## 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.
- With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch AiCore.
- Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
- MCP clients confirm each tool call by default. Leave that on until you have watched what the aicore mcp server does with a few real requests.

## Choosing this one

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. AiCore's toolset — `Method`, `GET`, `POST` and 6 more — is a fair guide to whether it matches your workflow. It is maintained by BrunoV21; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against AiCore's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
MethodPath
GET/health
POST/query
DELETE/query/{session_id}
Syncllm_config = LlmConfig( provider="openai", model="gpt-4o", api_key="super_secret_openai_key" )
Asyncasync def main(): llm_config = LlmConfig( provider="openai", model="gpt-4o", api_key="super_secret_openai_key" )
PrerequisitesThe Prerequisites tool exposed by this server.
Quickstartconfig = LlmConfig( provider="claude_code", model="claude-sonnet-4-5-20250929", # No api_key needed — auth is handled by the CLI )
Reasoner4AllThe Reasoner4All tool exposed by this server.

How to install the AiCore MCP server

{
  "mcpServers": {
    "aicore": {
      "command": "npx",
      "args": ["-y", "@anthropic-ai/claude-code"],
      "env": {
        "BRAVE_API_KEY": "your-value",
        "CONFIG_PATH": "your-value",
        "CLAUDE_PROXY_TOKEN": "your-value",
        "TOOL_CALL_START_TOKEN": "your-value",
        "TOOL_CALL_END_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
BRAVE_API_KEYCredential the server authenticates with.Yes
CONFIG_PATHFilesystem location the server is allowed to use.Optional
CLAUDE_PROXY_TOKENCredential the server authenticates with.Yes
TOOL_CALL_START_TOKENCredential the server authenticates with.Yes
TOOL_CALL_END_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use AiCore to Method.
  • Use AiCore to GET.
  • Use AiCore to POST.

Frequently asked questions

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