Compass MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Compass MCP ServerQuery Compass: select top 10 from customers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Compass MCP Server
A small, self-contained MCP server that lets Claude run SQL queries against Infor Compass (Data Fabric) directly from chat. You ask a question, Claude writes the SQL, fires it through this server, and reads back the results — including automatically exporting large result sets to Excel when they're too big to show in chat.
It wraps the Compass async query API (submit → poll → fetch) and handles Infor
ION API OAuth2 authentication automatically using your own .ionapi
credentials file — nothing Compass-related is hardcoded, so anyone with access
to their own Infor tenant can use this as-is.
Prerequisites
Python 3.10+ — python.org/downloads (Windows: tick "Add Python to PATH" during install)
Claude Desktop
A service-account
.ionapicredentials file for your Infor tenant. Get one from your Infor ION API administrator, or generate it yourself: Infor OS Portal → API Gateway → Authorized Apps → create/select an app → Download credentials. It downloads as a.ionapifile.
Related MCP server: MCP Database Server
Quick start
Download this repo — click the green Code button above → Download ZIP — and unzip it anywhere (e.g. Desktop or Downloads).
Drop your
.ionapifile into the unzipped folder and rename it tocredentials.ionapi.Run the installer:
macOS: double-click
install.commandWindows: double-click
install.bat
This copies the folder to your home directory, builds an isolated Python environment, verifies it can connect to Compass, and registers the server with Claude Desktop — all in one pass.
Fully quit and reopen Claude Desktop (not just close the window — quit it completely so it reloads its MCP server list).
Try it in a chat:
"Ping Compass to make sure it's connected."
"Query Compass: select the first 10 rows from <your table>."
Windows SmartScreen note: the first time you run
install.bat, Windows may show a blue "Windows protected your PC" warning, because it's a script downloaded from the internet. Click More info → Run anyway. This is standard for any unsigned script and not a sign anything is wrong.
Tools exposed to Claude
query_compass(sql, max_rows=1000)— run a SQL query, returncolumnsandrows(plusrow_count,truncated,query_id). Failed queries return a clearerror+message.export_compass_to_excel(sql, filename="compass_export", rows_per_file=500000)— run a SQL query in full and stream every row straight into one or more.xlsxfiles in your Downloads folder, instead of returning rows in chat. Claude calls this automatically instead ofquery_compasswhen a result is (or looks like it'll be) too big for chat. Streams to disk page-by-page (never holding the full result in memory) and auto-splits into_part1.xlsx,_part2.xlsx, etc. once a result exceeds the rows-per-file setting — this is what makes multi-hundred-thousand-row exports practical.ping_compass()— check Compass connectivity/auth. Returns{"ok": true, "response": "pong"}when healthy.
Using this in a Claude Project
Two files are included to make Claude noticeably better at writing CSD/SX.e SQL out of the box, meant to be attached to a Claude Project alongside this MCP server:
SX_Dictionary_AI_v3.md— a business-term-to-table/field reference covering 64 core CSD tables (customers, orders, inventory, pricing, AP/AR, warehouse management, etc.), generated from Infor's CSD data-conversion field maps. Add it as a Project Knowledge file.compass-query-agent-instructions.md— a starting-point Project Instructions template: tells Claude to default to writing/running SQL rather than asking clarifying questions, lists always-on filters (cono,statustype), and maps plain-language requests ("customers", "orders", "inventory") to the right tables. Fill in the bracketed placeholders (your company name, your warehouse code list) before using it — the rest is generic to any CSD/SX.e install.
Neither file is required for the MCP server itself to work — they're optional but recommended context for a Claude Project built around it.
What's in this folder
File | Purpose |
| The MCP server (Python, uses the official MCP SDK + httpx) |
| Shared Compass API client — auth, submit/poll/paginate |
| Orchestrates a full query run (submit → poll → paginate → write) for |
| Streaming, auto-splitting |
| One-click installer (recommended — see Quick start) |
| Builds the venv in place, without touching Claude Desktop's config (see Manual setup) |
| Registers/updates the |
| Python dependencies |
| Optional configuration overrides (none required) |
| CSD/SX.e table & field reference — optional Claude Project Knowledge file (see above) |
| Starting-point Claude Project Instructions template (see above) |
| You provide this — your own Infor ION API service-account credentials. Never commit it; see Security below. |
Manual setup
If you'd rather not run the one-click installer, you can do it by hand:
Clone or download this repo, and place your
.ionapifile inside it ascredentials.ionapi.Build the environment:
macOS / Linux:
cd compass-mcp bash setup.shWindows:
cd compass-mcp setup.batThis creates a
.venv, installs dependencies, and runs a live self-test that authenticates and pings Compass. You should see:{ "ok": true, "status_code": 200, "response": "pong" }Note the Python interpreter path it prints at the end, e.g.
/path/to/compass-mcp/.venv/bin/python.Open the Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
(In Claude Desktop you can also reach it via Settings → Developer → Edit Config.)
Add a
compassentry (merge into existingmcpServersif present), substituting your actual folder path:macOS / Linux:
{ "mcpServers": { "compass": { "command": "/path/to/compass-mcp/.venv/bin/python", "args": ["/path/to/compass-mcp/server.py"] } } }Windows (note
Scripts\python.exeand double backslashes):{ "mcpServers": { "compass": { "command": "C:\\Users\\you\\compass-mcp\\.venv\\Scripts\\python.exe", "args": ["C:\\Users\\you\\compass-mcp\\server.py"] } } }Fully quit and reopen Claude Desktop.
Updating an existing install
To pick up a newer version of this tool (e.g. a new release from this repo),
just replace server.py, compass_client.py, exporter.py, and
excel_writer.py in your installed folder with the latest versions, then
fully quit and reopen Claude Desktop. Since the server is already registered,
you don't need to touch claude_desktop_config.json or re-run the installer
— that step only happens once, the first time.
Moving to another computer
The whole folder is self-contained. To move it:
Copy the folder (the
.venvdoes not transfer — it has machine-specific paths; leave it behind or delete it). This works across operating systems.On the new machine, rebuild the venv:
bash setup.sh(macOS/Linux) orsetup.bat(Windows).Update the paths in the Claude Desktop config to match the new location and OS (see the Windows path format above).
credentials.ionapi travels with the folder, so there's no re-entering secrets
— just make sure you're not copying it somewhere less secure than where it
started.
How it works
Auth — reads
credentials.ionapi, performs an OAuth2 password grant against the ION token endpoint (pu+ot), caches the bearer token and refreshes it ~60s before expiry.Submit —
POST {base}/jobs/with the SQL as a plain-text body → returns aqueryId.Poll —
GET {base}/jobs/{queryId}/status/every 2s. Compass returns HTTP 202 whileRUNNINGand 201 whenFINISHED.Fetch —
GET {base}/jobs/{queryId}/result/→ rows. The server normalizes them intocolumns+rows.
The Compass base URL is derived from your .ionapi tenant automatically —
there's nothing tenant-specific to configure.
Configuration overrides (optional)
All optional — see .env.example. Set them as environment variables in the
Claude config's env block if needed, e.g. a longer timeout for big queries:
"compass": {
"command": "/path/to/compass-mcp/.venv/bin/python",
"args": ["/path/to/compass-mcp/server.py"],
"env": { "COMPASS_POLL_TIMEOUT": "300", "COMPASS_MAX_ROWS": "5000" }
}Security
credentials.ionapicontains live secrets for your Infor tenant. Never commit it to git or share it outside your organization. The included.gitignorekeeps it (and any other*.ionapifile) out of version control.Each person should use their own
.ionapifile, scoped to whatever permissions their Infor admin has granted them — don't pass credentials files around between teammates.The installers back up your existing
claude_desktop_config.json(asclaude_desktop_config.json.bak) before modifying it, so a merge issue is always recoverable.
Troubleshooting
Symptom | Fix |
Tools don't appear in Claude | Fully quit & reopen Claude Desktop; check the config JSON is valid and paths are absolute. |
Windows: "python is not recognized" | Install Python from python.org and tick "Add Python to PATH", then try again. |
Windows: installer says the | A real Python isn't installed — only the Store's app-execution alias is on PATH. Install Python from python.org (ticking "Add Python to PATH"), or disable the alias under Settings → Apps → Advanced app settings → App execution aliases. |
| Credentials expired/revoked. Re-download the |
| Ensure |
Query | Increase |
Verify from terminal |
|
| Compass jobs can expire if left idle too long between pages; re-run the export. If it keeps happening on the same query, try a smaller |
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/acogley313/compass-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server