AI Ajan Entegrasyonu

MCP Dökümanları

Appalize'ı Model Context Protocol aracılığıyla doğrudan Claude, Cursor ve VS Code'a bağlayın.

Çift taşıma desteği

Doğrudan istemci çağrıları için HTTP veya MCP istemciniz akış etkinlikleri beklediğinde SSE kullanın.

Asistan hazır araçlar

Anahtar kelime, sıralama, uygulama ve optimizasyon iş akışlarını tek bir sunucu tanımıyla AI ajanlarına açın.

Hızlı katılım

Bir MCP bloğu yapıştırın, API anahtarı başlığınızı ekleyin ve zaten kullandığınız istemciden test etmeye başlayın.

Taşıma Bitiş Noktaları

Esnek bağlantı yöntemleri.

Where do I get the API key?

Create it in the Appalize product at API Dashboard, then paste it into your MCP client config as `x-api-key`.

Bitiş Noktası Spesifikasyonu
HTTP: http://backend-p844sww08cccoo4oo84ck0kc:5000/api/mcp
SSE:  http://backend-p844sww08cccoo4oo84ck0kc:5000/api/mcp/sse

Header:
x-api-key: YOUR_API_KEY
Standart Yapılandırma

MCP JSON tanımı.

Sunucu Yapılandırması
{
  "mcpServers": {
    "appalize": {
      "transport": "http",
      "url": "http://backend-p844sww08cccoo4oo84ck0kc:5000/api/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY"
      }
    }
  }
}
İstemci Kurulumu

Tek entegrasyon, sonsuz iş akışı.

Her istemci MCP yapılandırmasını farklı yönetir. Appalize'ı ortamınıza bağlamak için aşağıdaki adımları kullanın.

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json

1

Claude Desktop ayarlarını açın.

2

Yapılandırma dosyanıza Appalize MCP sunucu kaydını ekleyin.

3

Claude Desktop'ı yeniden başlatın ve API anahtarınızla tekrar yetkilendirin.

VS Code / Continue

~/.continue/config.json

1

VS Code içinde Continue eklentisini kurun.

2

Appalize HTTP veya SSE taşımayı işaret eden bir `mcpServers` girdisi ekleyin.

3

Yeni tool sunucusunu almak için editör penceresini yeniden yükleyin.

Cursor

~/.cursor/mcp.json

1

Cursor ayarlarında MCP'yi etkinleştirin.

2

API anahtarınızla birlikte Appalize MCP sunucu tanımını yapıştırın.

3

Cursor'ı yeniden başlatın ve manifest veya health endpoint'i test edin.

Registry & scopes

How the MCP surface stays current.

Appalize MCP is not a hand-maintained sidecar. The exposed catalog is filtered from the same registry and auth scope model that powers the backend integration layer.

Registry-driven surface

The MCP manifest, tools, resources, and scopes are generated from one backend registry so the AI surface stays aligned with the product API.

Scope-filtered catalog

Clients only see tools and resources their API key or dashboard JWT can actually use. Admin tools require an admin role as well as admin scopes.

Compact by default

The manifest omits input schemas unless `detail=full` is requested, reducing token usage for assistants that only need discovery.

Current workflow coverage

Appalize MCP now spans keyword research, app details, competitor analysis, Apple workspace operations, pricing context, and other growth workflows.

Model context resources

Give the assistant runtime instructions from MCP itself.

Appalize publishes model-readable resources and prompts so an assistant can verify the active account, inspect scopes, follow the manifest-first flow, and use safer write behavior before it calls tools.

appalize://mcp/usage-guide

Tool/resource ordering, manifest-first discovery, ASO all-locale defaults, lowercase keyword policy, and safe write rules.

appalize://mcp/account-profile

Safe metadata for the authenticated Appalize account: user ID, role, auth method, API key ID/name, label, and scopes. Raw secrets are never returned.

appalize://mcp/multi-account-guide

Client config pattern and routing rules for multiple Appalize accounts.

appalize_mcp_orientation

Prompt that tells the model to read account profile and usage guide resources before selecting tools, and to default ASO/cross-localization to all Appalize target locales unless a subset is explicit.

appalize_multi_account_routing

Prompt that tells the model to verify account context and ask before ambiguous writes.

Multiple Appalize accounts

Use one MCP server entry per Appalize account.

Create a separate Appalize API key for each Appalize account or client profile, then give each key its own MCP server name. The backend does not store other Appalize account keys for routing.

Read appalize://mcp/account-profile before account-specific work.
If the user does not specify an account and a write tool may be called, ask which profile to use.
Do not mix apps, drafts, campaigns, subscriptions, screenshots, or reports across server entries unless explicitly requested.
Multiple account MCP JSON config
{
  "mcpServers": {
    "appalize-personal": {
      "transport": "http",
      "url": "http://backend-p844sww08cccoo4oo84ck0kc:5000/api/mcp",
      "headers": {
        "x-api-key": "APK_FOR_PERSONAL_ACCOUNT"
      }
    },
    "appalize-client-a": {
      "transport": "http",
      "url": "http://backend-p844sww08cccoo4oo84ck0kc:5000/api/mcp",
      "headers": {
        "x-api-key": "APK_FOR_CLIENT_A"
      }
    },
    "appalize-client-b": {
      "transport": "http",
      "url": "http://backend-p844sww08cccoo4oo84ck0kc:5000/api/mcp",
      "headers": {
        "x-api-key": "APK_FOR_CLIENT_B"
      }
    }
  }
}
Araç Yetenekleri

Açık motor işlemleri.

MCP sunucumuz, AI asistanlarınız için özel araçları otomatik olarak kaydeder.

Yetenek

search_keywords

Ülke duyarlı sorgu desteğiyle anahtar kelime ve önerileri bulun.

Yetenek

get_app_details

Bir mağaza kimliği için uygulama kayıtlarını ve ilgili analitik bağlamı çekin.

Yetenek

get_competitor_keywords

Rakip anahtar kelime setlerini ve sıralama fırsatlarını inceleyin.

Yetenek

optimize_title

Hedef anahtar kelime bağlamıyla AI destekli başlık fikirleri üretin.

Sonraki Adımlar

REST API için hazır mısınız?

Ham veri akışlarına veya toplu işlemeye mi ihtiyacınız var? REST API dökümantasyonumuz tam bitiş noktası ayrıntıları ve oyun alanları sağlar.