ACC.MCP
An MCP server that exposes Autodesk Platform Services (APS) as tools for AI assistants to interact with the APS Data Management API. It enables users to authenticate and manage hubs, projects, and folders through a standardized interface.
README
ACC.MCP – MCP service for Autodesk Platform Services
MCP (Model Context Protocol) server that exposes Autodesk Platform Services (APS) as tools for AI assistants (e.g. Cursor).
Requirements
- Node.js 18+
- APS application with Client ID and Client Secret (2-legged OAuth)
Setup
-
Install dependencies
npm install -
Configure credentials
Copy
.env.exampleto.envand set your APS app credentials:cp .env.example .env # Edit .env: set APS_CLIENT_ID and APS_CLIENT_SECRET -
Build
npm run build -
Pack (optional) If you want to use it on Claude Desktop, you can pack the MCP to a .mcpb
npm run pack
Running the MCP service
The server uses stdio transport: a client (e.g. Cursor) spawns this process and talks to it via stdin/stdout.
- Run directly:
npm startornode dist/index.js - With env file: use
dotenvor your shell to load.envbefore starting
Cursor configuration
Add this MCP server in Cursor (e.g. Settings → MCP or .cursor/mcp.json):
{
"mcpServers": {
"acc-mcp": {
"command": "node",
"args": ["c:/repositories/00-Research/ACC.MCP/dist/index.js"],
"env": {
"APS_CLIENT_ID": "your_client_id",
"APS_CLIENT_SECRET": "your_client_secret",
"APS_SCOPE": "data:read"
}
}
}
}
Use the path to dist/index.js that matches your machine. You can also run via npx or a wrapper script that loads .env and then runs node dist/index.js.
Tools
Simplified tools (recommended)
These return compact, pre-processed summaries (~95 % smaller than raw API responses) and include parameter validation with helpful error messages.
| Tool | Description |
|---|---|
aps_list_hubs |
List all ACC / BIM 360 hubs (accounts) — returns name, id, type, region. |
aps_list_projects |
List projects in a hub — returns name, id, platform, last modified. |
aps_get_top_folders |
Get root folders for a project (Project Files, Plans, Shared, …). |
aps_get_folder_contents |
Summarised folder listing with file-type breakdown, sizes, version info. Supports filtering by extension and hiding hidden items. |
aps_get_item_details |
Metadata for a single file: name, type, size, version number, dates. |
aps_get_folder_tree |
Recursive folder-tree with file counts per folder (configurable depth). |
aps_docs |
APS quick-reference: common ID formats, browsing workflow, API paths, file extensions, error troubleshooting. |
Power-user tools
| Tool | Description |
|---|---|
aps_get_token |
Verify credentials / obtain a 2-legged access token. All other tools handle tokens automatically. |
aps_dm_request |
Call any Data Management API endpoint from the APS Data Management spec: project/v1 (hubs, projects, topFolders) and data/v1 (folders, contents, items, versions, downloads, jobs, storage, commands). Returns the full JSON:API response. Parameters: method (GET, POST, PATCH, DELETE), path, optional query and body. |
Typical workflow
aps_list_hubs → pick a hub
aps_list_projects(hub_id) → pick a project
aps_get_top_folders(hub_id, project_id) → see root folders
aps_get_folder_contents(project_id, folder_id) → browse files
aps_get_item_details(project_id, item_id) → file metadata
For write/create operations (e.g. create folder, create item, execute command) use aps_dm_request and set APS_SCOPE to include data:write or data:create as required by the endpoint.
MCP Bundle (.mcpb)
This project can be packed as an MCP Bundle for one-click install in Claude Desktop and other MCPB-compatible apps.
-
Create the bundle
npm run packThis builds the server, prepares a bundle directory (manifest + server + production dependencies), zips it to
acc-mcp.mcpb, then removes the temp directory. On Windows the script uses PowerShellCompress-Archive; on macOS/Linux it useszip -r. -
Install the bundle
Open
acc-mcp.mcpbin Claude for macOS or Windows (or any app that supports MCPB). You’ll be prompted for APS Client ID and APS Client Secret; the app will pass them to the server as environment variables.
The manifest.json at the repo root follows the MCPB manifest spec (manifest_version 0.3, Node server, user_config for credentials).
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。