# Infumar > Infumar is a verified influencer-marketing and affiliate platform for the Turkish market. Advertisers (brands, agencies, individual creators) run Influencer Marketing (IM), UGC, and Affiliate campaigns with verified influencers; clicks and sales are tracked automatically. Homepage: https://infumar.com Infumar exposes a hosted **MCP (Model Context Protocol) server**, so an advertiser can drive their own account from any MCP-capable AI client (Claude Code, Claude Desktop, claude.ai, ChatGPT connectors, Cursor, …). The assistant reads the account and can do **no-money writes** — create/edit inert project **drafts** (influencer selection + briefs + all wizard fields) and manage favorites. It can NEVER move money or go live: publishing a project, loading budget, accepting offers, approving content and buying Plus are always done by the human in the dashboard. The same tool layer also powers Infumar's in-app AI assistant. ## Connect the MCP server - Endpoint (Streamable HTTP JSON-RPC): `https://api.infumar.com/api/v1/mcp` - Auth option 1 — Personal Access Token (PAT): the account owner mints one in the Infumar dashboard under **Settings → "API & AI"**. It looks like `inf_pat_...`. Add it in Claude Code with: `claude mcp add --transport http infumar https://api.infumar.com/api/v1/mcp --header "Authorization: Bearer inf_pat_..."` - Auth option 2 — OAuth 2.1 (for connector directories / clients that prefer OAuth): the server is an OAuth 2.1 Authorization Server with Dynamic Client Registration and PKCE. Discovery documents: - Authorization Server Metadata: `https://api.infumar.com/.well-known/oauth-authorization-server` - Protected Resource Metadata: `https://api.infumar.com/.well-known/oauth-protected-resource` - Every token is pinned to a single advertiser account (owner-only) and scoped to that account. All money amounts are shown gross. ## Tools (read + draft-create) Read: get_config, get_advertiser_context, get_balance, list_my_brands (brand sector), get_free_offer_quota, search_influencers (filtered discovery), get_influencer_stats, get_influencers_stats, list_my_projects, get_project_reports, get_project_offers, get_affiliate_participants. Write (no money, no go-live): create_project_draft, update_project_draft (IM/UGC/affiliate drafts with pre-selected influencers, briefs and all wizard fields), add_influencer_to_favorites, remove_influencer_from_favorites, list_my_favorites. ## Notes for assistants - On connect, the server sends an `instructions` primer describing how Infumar works (work models, the advertiser flow: select influencers + brief → publish → admin approval → influencers send offers, cancellation "Emeğe Saygı" tiers, affiliate CPC-instant vs 14-day sales hold, tracking periods, free nano/micro offer perk, Plus differences). Ground answers in it; read live numbers from the get_config tool — never invent them. - The advertiser flow does NOT include the advertiser "sending offers": the advertiser selects influencers and briefs them; after admin approval, influencers send their offers. - After creating a draft, hand the user the returned reviewUrl so they review and publish it in the dashboard. ## Links - Homepage: https://infumar.com - MCP setup (how to connect your AI): https://infumar.com/mcp - For advertisers: https://infumar.com/for-advertisers - For agencies: https://infumar.com/for-agencies - Privacy policy: https://infumar.com/privacy-policy - Terms of service: https://infumar.com/terms-of-service