openai-ads-mcp 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.js CHANGED
@@ -2,7 +2,7 @@ import { readFile } from "node:fs/promises";
2
2
  import { basename } from "node:path";
3
3
  export const API_BASE_URL = "https://api.ads.openai.com/v1";
4
4
  export const CONVERSIONS_BASE_URL = "https://bzr.openai.com/v1";
5
- const USER_AGENT = "openai-ads-mcp/0.1.4";
5
+ const USER_AGENT = "openai-ads-mcp/0.1.5";
6
6
  const FRIENDLY_ERRORS = {
7
7
  401: "Invalid or expired OPENAI_ADS_API_KEY.",
8
8
  403: "Access denied. Check whether this Ads account is eligible and has permission for this endpoint.",
package/dist/index.js CHANGED
@@ -32,7 +32,7 @@ export function registeredToolMetadata() {
32
32
  export function createOpenAIAdsMcpServer() {
33
33
  const server = new McpServer({
34
34
  name: "OpenAI Ads",
35
- version: "0.1.4",
35
+ version: "0.1.5",
36
36
  }, {
37
37
  instructions: INSTRUCTIONS,
38
38
  });
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "openai-ads-mcp",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "mcpName": "io.github.trakkr-aisearch/openai-ads-mcp",
5
- "description": "Typed MCP server for OpenAI's Advertiser API",
5
+ "description": "Typed MCP server for OpenAI Ads and ChatGPT Ads via the Advertiser API",
6
6
  "type": "module",
7
7
  "license": "MIT",
8
8
  "author": "Trakkr <hello@trakkr.ai>",