Car logo API and image CDN: search automotive brands, fetch brand data, and build logo CDN URLs.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-motomarks-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Car logo API and image CDN: search automotive brands, fetch brand data, and build logo CDN URLs.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud / marketing
DataForSEO API modelcontextprotocol server
MCP Server for kubernetes management commands
Upload, organize, search, and transform images, videos, and files with AI-powered tools.
MCP server for Hostinger API
MCP Security Weekly
Get CVE alerts and security updates for io.motomarks/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The official Model Context Protocol (MCP) server for Motomarks: a cloud-hosted bridge that gives your AI tools secure, real-time access to the Motomarks car logo API and image CDN.
MCP Registry: io.motomarks/mcp · Auth: OAuth 2.1 or API key · Hosting: Motomarks Cloud
The Motomarks MCP Server connects MCP-compatible clients to the Motomarks brand library. Once configured, your AI tools can search automotive brands, fetch brand data and color palettes, browse logo assets, and generate ready-to-embed CDN image URLs. Authentication uses OAuth 2.1 (browser sign-in) or a Motomarks secret API key, so every request respects your plan and rate limits.
With the Motomarks MCP Server, you can:
| Add to Cursor | Add to VS Code |
|---|---|
| Reference brand logos directly from your codebase. | Search brands and embed logos via GitHub Copilot. |
https://motomarks.io/api/mcp
Transport: streamable HTTP. On first connection your client runs a browser-based OAuth flow (dynamic client registration + PKCE) against your Motomarks account. No JSON editing or manual token handling required.
| Client | Configuration |
|---|---|
| Claude (Claude.ai, Desktop, Code) | Add a custom connector with the endpoint URL, or use claude mcp add --transport http motomarks https://motomarks.io/api/mcp |
| Cursor | One-click install above, or add the URL under Settings → MCP |
| VS Code (GitHub Copilot) | One-click install above, or "motomarks": { "type": "http", "url": "https://motomarks.io/api/mcp" } in mcp.json |
| Google Gemini CLI | gemini extensions install with this repo, or add the httpUrl to settings.json |
| Any stdio-only client | Connect through the mcp-remote proxy (below) |
For clients that only speak stdio, connect through mcp-remote:
{
"mcpServers": {
"motomarks": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://motomarks.io/api/mcp"]
}
}
}
Requires Node.js 20+. The proxy opens a browser for OAuth sign-in and caches tokens locally.
For CI, backends, or non-interactive setups, authenticate with a Motomarks secret API key (sk_..., created in your dashboard) instead of OAuth by sending it as a Bearer token:
Authorization: Bearer sk_...
With the local proxy:
{
"mcpServers": {
"motomarks": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://motomarks.io/api/mcp",
"--header",
"Authorization: Bearer sk_..."
]
}
}
}
| Tool | Intent | Description |
|---|---|---|
search_brands | read | Search published brands by name, company, or slug; optionally include CDN image URLs |
get_brand | read | Full brand detail: description, colors, palette, social links, company facts, FAQs |
list_brand_assets |