Ac MCP Server

A Model Context Protocol (MCP) server that exposes the [APLCart](https://aplcart.info) idiom collection with semantic search capabilities. APLCart is

Local serverstdioPython

What is the Ac MCP MCP server?

Most AI and media services work still happens through a UI a human drives. Ac MCP MCP server moves it into the conversation instead. A Model Context Protocol (MCP) server that exposes the APLCart idiom collection with semantic search capabilities. APLCart is a searchable collection of APL expressions with descriptions.

The short version

APLCart is a searchable collection of APL idioms and expressions maintained at https://aplcart.info/

  • Find APL expressions by exact syntax match
  • Search across syntax, descriptions, and keywords
  • Get keywords for specific APL expressions
  • Natural language queries using OpenAI embeddings

The tools it exposes

The server publishes 5 tools. What each one is for:

  • lookup-syntax — Exact match on APL syntax
  • search — Substring search across syntax, description, and keywords
  • keywords-for — Get keywords for a specific syntax
  • semantic-search — Natural language search using embeddings
  • Prerequisites — The Prerequisites tool exposed by this server

Getting it running

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

What it needs from you

Configuration is passed through the environment: APLCART_USE_DB, OPENAI_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Python 3.11 or higher - OpenAI API key (for semantic search functionality)

How it compares

Plenty of AI and media services 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. Ac MCP's toolset — lookup-syntax, search, keywords-for and 2 more — is a fair guide to whether it matches your workflow. It is maintained by xpqz; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • 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.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
lookup-syntaxExact match on APL syntax
searchSubstring search across syntax, description, and keywords
keywords-forGet keywords for a specific syntax
semantic-searchNatural language search using embeddings
PrerequisitesThe Prerequisites tool exposed by this server.

Configuration

  • Python 3.11 or higher - OpenAI API key (for semantic search functionality)
VariableDescriptionRequired
APLCART_USE_DBConfiguration value read at startup.Optional
OPENAI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Ac MCP to lookup-syntax.
  • Use Ac MCP to search.
  • Use Ac MCP to keywords-for.

Frequently asked questions

It connects Ac MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (lookup-syntax, search, keywords-for, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ac MCP directly.