Any MCP Server

Chat with any other OpenAI SDK Compatible Chat Completions API, like Perplexity, Groq, xAI and more

Local serverstdioTypeScript

What is the Any MCP server?

Any mcp server connects Any to AI assistants that speak the Model Context Protocol. Chat with any other OpenAI SDK Compatible Chat Completions API, like Perplexity, Groq, xAI and more.

What Any does

Integrate Claude with Any OpenAI SDK Compatible Chat Completion API - OpenAI, Perplexity, Groq, xAI, PyroPrompts and more.

Tools it exposes

Once connected, the assistant can call these 2 tools directly:

  • Debugging — Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP
  • Acknowledgements — The Acknowledgements tool exposed by this server

Installing the any mcp server

The server is distributed via npm as args, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 7 environment variables: AI_CHAT_KEY, AI_CHAT_NAME, AI_CHAT_MODEL, AI_CHAT_BASE_URL, OPENAI_KEY, PYROPROMPTS_KEY, PERPLEXITY_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Any sits in that group, and the shape of its toolset — Debugging, Acknowledgements — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the any mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
DebuggingSince MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:
AcknowledgementsThe Acknowledgements tool exposed by this server.

How to install the Any MCP server

{
  "mcpServers": {
    "any-chat-completions": {
      "command": "npx",
      "args": ["-y", "args"],
      "env": {
        "AI_CHAT_KEY": "your-value",
        "AI_CHAT_NAME": "your-value",
        "AI_CHAT_MODEL": "your-value",
        "AI_CHAT_BASE_URL": "your-value",
        "OPENAI_KEY": "your-value",
        "PYROPROMPTS_KEY": "your-value",
        "PERPLEXITY_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
AI_CHAT_KEYCredential the server authenticates with.Yes
AI_CHAT_NAMEConfiguration value read at startup.Optional
AI_CHAT_MODELConfiguration value read at startup.Optional
AI_CHAT_BASE_URLEndpoint or connection string the server talks to.Yes
OPENAI_KEYCredential the server authenticates with.Yes
PYROPROMPTS_KEYCredential the server authenticates with.Yes
PERPLEXITY_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Any to Debugging.
  • Use Any to Acknowledgements.

Frequently asked questions

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