Aprimo DAM API MCP Server
Enables reading of Aprimo DAM asset metadata, fields, and files through the Aprimo REST API. Designed for deployment on Azure via Docker.
README
Aprimo DAM API MCP Server
A Model Context Protocol server that exposes read tools for the Aprimo DAM REST API. Designed for deployment to Azure via Docker.
Tools
| Tool | Description |
|---|---|
get_record |
Read core record/asset metadata (title, status, content type, timestamps) |
get_record_fields |
Read metadata field values; optionally filter by field or field group |
get_record_files |
Read attached files, master file, and optionally renditions/public links |
create_record |
Create a new record/asset with optional master file upload token and fields |
update_record |
Update record status and/or metadata field values |
upload_file |
Upload a file to Aprimo and get an upload token for create_record |
get_field_definitions |
List or look up Aprimo metadata field definitions (schema) |
Prerequisites
- An Aprimo tenant with DAM enabled
- An OAuth 2.0 Client Credentials registration in Aprimo Administration → Integration → Registrations
- Flow type: Client Credentials
- Scope:
api - Assign an integration user with appropriate DAM read permissions
Configuration
Copy .env.example to .env and fill in your credentials:
cp .env.example .env
| Variable | Description |
|---|---|
APRIMO_TENANT |
Tenant subdomain (e.g. mycompany → mycompany.dam.aprimo.com) |
APRIMO_CLIENT_ID |
OAuth client ID from your registration |
APRIMO_CLIENT_SECRET |
OAuth client secret from your registration |
PORT |
Server port (default: 3000) |
ALLOWED_ORIGINS |
Optional comma-separated Origin allowlist for /mcp |
Local development
npm install
npm run dev
Test with the MCP Inspector:
npx @modelcontextprotocol/inspector
# Connect to http://localhost:3000/mcp (Streamable HTTP)
Connect in Claude
claude mcp add --transport http aprimo-dam http://localhost:3000/mcp
For Claude Desktop / Claude.ai, add a custom connector pointing to your deployed URL.
Client setup (Claude, Cursor, other LLMs): see docs/client-configuration.md — uses mcp-remote with X-Aprimo-* headers.
Docker
docker build -t aprimo-dam-api-mcp .
docker run -p 3000:3000 \
-e APRIMO_TENANT=your-tenant \
-e APRIMO_CLIENT_ID=your-client-id \
-e APRIMO_CLIENT_SECRET=your-client-secret \
aprimo-dam-api-mcp
Azure deployment
Manual Web App (Portal): see docs/azure-webapp-manual.md
Automated Container Apps: see docs/azure-deployment.md
API reference
Aprimo uses Select Headers to control which sub-resources are embedded in responses:
select-record: fields— embed field valuesselect-record: files,masterfile— embed file collectionsselect-fileversion: renditions— embed renditions on file versions
See the Aprimo DAM REST API docs for full details.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.