Skip to main content
Glama
mdkulkarni2005

OSMOS Marketing API MCP Server

OSMOS Marketing API MCP Server

Model Context Protocol server that exposes the OSMOS Marketing API registry as callable tools, so an AI agent can discover endpoints and make real API calls.

Structure

api_mcp/
├── server.mjs                  # MCP server (stdio transport)
├── package.json
├── registry/
│   ├── index.json              # Root registry (lists services)
│   ├── service/
│   │   └── service.json        # Service definition (base URL, auth, hierarchy)
│   └── endpoints/
│       ├── index.json          # Endpoint index (15 endpoints)
│       └── *.json              # One file per endpoint (OpenAPI-derived)

Related MCP server: aman-mcp

How it works

  1. server.mjs loads the registry JSON files at startup.

  2. It registers a tool for every endpoint in registry/endpoints/index.json (named by converting id to snake_case, e.g. create-spa-campaigncreate_spa_campaign).

  3. Each endpoint tool accepts path params, query params, an optional body, plus x_token and x_retailer_id auth headers.

  4. Calling a tool performs the real HTTP request against https://apiv2.onlinesales.ai/marketing/v1/advertiser and returns status + parsed response.

Built-in tools

  • list_endpoints — list all endpoints (method, path, summary)

  • get_service_details — service definition (base URL, auth, hierarchy)

  • get_endpoint_definition — full schema for one endpoint by id

Resources

  • osmos://service — service definition

  • osmos://endpoints — endpoint index

Prompt

  • campaign-hierarchy — explains the campaign hierarchy before acting

Run

npm install
npm start

The server speaks MCP over stdio. Connect it from any MCP client (e.g. Claude Desktop, opencode) using:

{
  "mcpServers": {
    "osmos-marketing": {
      "command": "node",
      "args": ["/absolute/path/to/api_mcp/server.mjs"]
    }
  }
}

Auth

Every API call requires both headers — they are passed as x_token and x_retailer_id tool arguments:

x-token:        Authentication token
x-retailer-id:  Retailer identifier

Without both, the tool returns a clear error explaining they are required.

Adding a new endpoint

  1. Add registry/endpoints/<endpoint-id>.json following the existing schema pattern (fields: endpoint.id, method, path, operationId, summary, description, parameters, requestBody, responses, deprecated).

  2. Add an entry to registry/endpoints/index.json.

  3. Restart the server — the new endpoint tool is registered automatically.

Install Server
F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Free public MCP for AI agents — 193 tools, 44 workflows. No API key.

  • 100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.

  • Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.

View all MCP Connectors

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/mdkulkarni2005/osmos-marketing-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server