intacct-docs
Provides queryable access to Sage Intacct REST API documentation, enabling AI assistants to search endpoints, browse schemas, generate example payloads, and check documentation quality.
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., "@intacct-docsGenerate an example payload for creating a vendor."
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.
Sage Intacct Documentation MCP Server
An MCP server that gives AI assistants queryable access to Sage Intacct REST API documentation. Load one or more OpenAPI specs and let your LLM search endpoints, browse schemas, generate example payloads, and check documentation quality — all without leaving the conversation.
Quick Start
1. Install
npm install -g @rowellewis/intacct-docs-mcpOr run without installing:
npx @rowellewis/intacct-docs-mcp2. Add to Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"intacct-docs": {
"command": "npx",
"args": ["-y", "@rowellewis/intacct-docs-mcp"],
"env": {
"SPEC_DIR": "/path/to/your/specs"
}
}
}
}Omit SPEC_DIR to use the bundled Sage Intacct spec.
3. Try it
"Search for endpoints related to accounts payable vendors." "Show me the request body schema for POST /objects/accounts-payable/vendor." "Generate an example payload for creating a journal entry."
Related MCP server: mcp-swagger
Tools
Tool | What it does |
| Fuzzy full-text search across paths, summaries, and descriptions. Supports multi-word queries and typo tolerance. |
| Full documentation for a specific endpoint — parameters, request/response schemas, examples. |
| Schema definition with all properties, types, and constraints. |
| Browse available schema names, filterable by prefix. |
| All API tags/categories with endpoint counts. |
| All endpoints under a specific tag. Use |
| Generates a realistic JSON request body for any endpoint, inferred from its schema. |
| Scores documentation quality (0–100) and lists issues by severity. |
| Readiness status, index counts, and startup timing. |
Full parameter reference, error codes, and examples: docs/public-contract.md.
Configuration
Variable | Default | Description |
|
| Directory scanned for |
|
|
|
|
| Port when using HTTP transport |
|
| Bind address for HTTP transport ( |
|
| Response size cap — output is truncated with a notice when exceeded |
|
|
|
|
| Maximum HTTP request body size in bytes |
|
| Max requests per minute per IP (HTTP transport) |
Development
npm install
npm run build # compile TypeScript
npm run dev # watch mode with tsx
npm test # run all testsNode.js >=18 required.
Project layout:
src/
├── app.ts # tool registry and handlers
├── config.ts # env vars → AppConfig
├── index.ts # entry point, transport selection
├── core/
│ ├── indexer.ts # in-memory indexes + fuzzy search
│ ├── formatter.ts # markdown response formatting
│ ├── fuzzy.ts # trigram similarity matching
│ ├── example-generator.ts
│ ├── validate.ts
│ ├── cache.ts
│ └── spec-quality.ts
└── transport/
├── http-server.ts # MCP Streamable HTTP transport + GET /health
└── stdio.ts # MCP stdio wrapperTests use Vitest.
Deployment
HTTP transport (MCP Streamable HTTP — for URL-based MCP clients):
TRANSPORT=http HTTP_PORT=3000 npm startOperations
Health: call the
healthtool — returns readiness, index counts, and startup duration. Or hitGET /healthwhen running in HTTP mode.Logs: structured JSON on stderr. Adjust verbosity with
LOG_LEVEL.Runbook:
docs/ops-runbook.md
Troubleshooting
Server won't start — verify SPEC_DIR contains at least one *.openapi.yaml file, then run npm run build and check stderr.
Endpoint not found — use search-endpoints to discover paths. Methods must be uppercase (GET, POST, …).
Schema not found — use list-schemas with an optional prefix to browse what's available. Names are case-sensitive.
License
MIT
This server cannot be installed
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
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/RowelLewis/mcp-intacct-docs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server