FastBound MCP
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., "@FastBound MCPsearch for items with manufacturer 'Glock'"
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.
FastBound MCP
An MCP server for the FastBound firearms Acquisition & Disposition (A&D) API — the electronic bound book used by US Federal Firearms Licensees (FFLs). It lets an MCP client (Claude Desktop, Claude Code, etc.) search inventory, record acquisitions and dispositions, manage contacts, and pull reports through natural language.
⚠️ Compliance disclaimer. This tool writes to ATF-regulated records (27 CFR Part 478). You — the FFL/operator — are solely responsible for the accuracy and legality of every record. Test against a FastBound TEST account before touching production data. Writes are disabled by default (see Write safety).
Features
39 tools covering account/reference, items, acquisitions, dispositions, contacts, reports, webhooks, and inventory — near-complete coverage of the FastBound v1 Account API.
Guarded writes with dry-run preview. Writes are off unless you opt in; committing/destructive operations preview exactly what they will send and require an explicit
confirm:true.Rate-limit aware (60 req/min token bucket + 429 backoff) and surfaces FastBound's side-effect headers (multiple-sale reports, auto-acquisitions on FFL transfers, contact dedupe).
Related MCP server: Devici MCP Server
Install
The server runs over stdio and is configured entirely through environment variables.
Claude Code
claude mcp add fastbound \
-e FASTBOUND_ACCOUNT_NUMBER=12345 \
-e FASTBOUND_API_KEY=your-api-key \
-e FASTBOUND_AUDIT_USER=you@ffl.com \
-e FASTBOUND_ALLOW_WRITES=false \
-- npx -y fastbound-mcpClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"fastbound": {
"command": "npx",
"args": ["-y", "fastbound-mcp"],
"env": {
"FASTBOUND_ACCOUNT_NUMBER": "12345",
"FASTBOUND_API_KEY": "your-api-key",
"FASTBOUND_AUDIT_USER": "you@ffl.com",
"FASTBOUND_ALLOW_WRITES": "false"
}
}
}
}Configuration
Variable | Required | Default | Purpose |
| yes | — | Account number (the numeric id in your cloud.fastbound.com URL). Used as the Basic-auth username. |
| yes | — | API key from Settings → Account. Basic-auth password. |
| recommended | — | Email recorded as |
| no |
| Master write switch. When false, every write tool refuses and sends nothing. |
| no |
| API root override. |
| no | — | Optional |
Get a free TEST account at fastbound.com to build and validate integrations without affecting real records. Generate the API key in Settings → Account, and find the account number in your dashboard URL.
Write safety
This server treats writes as dangerous by default:
Off by default. With
FASTBOUND_ALLOW_WRITESunset/false, every write tool returnsBLOCKEDand sends nothing.Audit user required. Writes need a valid
X-AuditUseremail (fromFASTBOUND_AUDIT_USERor a per-callauditUser).Dry-run by default for the dangerous ones. Committing or destructive tools (
acquire,dispose,commit_*,delete_item,undispose_item,merge_contacts,update_*, theft-loss/destroyed/NFA, …) return aDRY RUNpreview showing the exact method, path, and request body. Re-call withconfirm:trueto execute. The preview is built from the same code that sends the live request, so it can't drift.Staging tools execute directly. Creating pending (uncommitted) records or adding items to them carries no ATF effect, so those run without a confirm step (but still require the write switch + audit user).
Tool results are tagged OK / DRY RUN / BLOCKED / ERROR on the first line.
Tools
Reference:
get_account,list_smartlists,list_usersItems:
search_items,get_item,update_item,set_item_external_id,delete_item,undispose_itemAcquisitions:
search_acquisitions,get_acquisition,acquire,create_pending_acquisition,add_acquisition_items,commit_acquisitionDispositions:
search_dispositions,get_disposition,list_4473_dispositions,dispose,create_pending_disposition,add_disposition_items,remove_disposition_items,commit_disposition,lock_disposition,dispose_theft_loss,dispose_destroyed,dispose_nfaContacts:
search_contacts,get_contact,create_contact,update_contact,manage_contact_licenses,merge_contactsReports:
download_bound_book,download_4473,download_attachment,download_multiple_sale_reportWebhooks / Inventory:
manage_webhooks,bulk_verify_inventory
Firearm classification fields (caliber, manufacturer, type, condition, location) are account-configurable — use list_smartlists to discover valid values before writing.
Development
npm install
npm run build # tsc → dist/
npm test # vitest (offline unit tests)
npm run typecheckThe unit tests are fully mocked and offline. An opt-in live smoke test (test/smoke.account.test.ts) runs read-only get_account against a real account when FASTBOUND_ACCOUNT_NUMBER/FASTBOUND_API_KEY are set, and skips otherwise:
FASTBOUND_ACCOUNT_NUMBER=... FASTBOUND_API_KEY=... npx vitest run test/smoke.account.test.tsLicense
MIT
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
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/xuanji86/fastbound-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server