adsense-mcp-server copilot-instructions.md

adsense-mcp-server copilot-instructions.md is an instructions file for GitHub Copilot from AppsYogi-com/adsense-mcp-server. It costs 686 tokens per session, scanned A, original, MIT.

Project instructions for an MCP server that lets AI clients access Google AdSense through the AdSense API. MCP is a standard way for AI tools to call outside services.

In plain words
What is it for?
Use them when developing the AdSense MCP server, its command-line setup and diagnostics, authentication, API tools, or resources.
Why use it?
They explain the server structure, authentication choices, request flow, caching, and rate limiting so changes fit the existing design.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/appsyogi-com/adsense-mcp-server/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/AppsYogi-com/adsense-mcp-server

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for adsense-mcp-server copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/appsyogi-com/adsense-mcp-server/copilot-instructions.svg)](https://agentmods.dev/instructions/appsyogi-com/adsense-mcp-server/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/appsyogi-com/adsense-mcp-server/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/appsyogi-com/adsense-mcp-server/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 686 This file is loaded in full into every session.
When invoked 686 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00686 $0.00686
Opus 5 $0.00343 $0.00343
Sonnet 5 $0.00137 $0.00137
Haiku 4.5 $0.00069 $0.00069

Measured 5d ago against content hash 551778701623, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

adsense-mcp-server copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 78 lines

How it starts

The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AdSense-MCP Copilot Instructions

Project Overview

This is a Model Context Protocol (MCP) server that provides Google AdSense API access to AI clients (Claude, Cursor, VS Code Copilot). It's distributed as a CLI tool via npm (adsense-mcp) with OAuth/service account authentication.

Architecture

src/
├── index.ts          # Public exports for programmatic use
├── types.ts          # TypeScript types (single source of truth)
├── cli/              # Commander-based CLI (`adsense-mcp init|doctor|run`)
├── server/           # MCP server implementation
│   ├── index.ts      # Server factory with stdio transport
│   ├── tools/        # MCP tools organized by domain
│   └── resources/    # MCP resources
├── adsense/
│   ├── client.ts     # AdSense API wrapper with all operations
│   ├── rateLimiter.ts # Rate limiting with exponential backoff
│   └── cache.ts      # SQLite cache with TTL
└── auth/             # OAuth2 + service account auth, token storage

Key data flows:

  1. CLI commands → createServer() → MCP stdio transport
  2. Tool calls → handleToolCall() routes to domain handlers → AdSenseClient → Google API
  3. Tokens stored via keytar (OS keychain) with file fallback; config in env-paths directories

Development Commands

npm run build      # tsup build (ESM, Node 18+)
npm run dev        # Watch mode
npm run typecheck  # tsc --noEmit
npm run lint       # eslint src/
adsense-mcp doctor # Check auth and API access

Code Conventions

Adding New MCP Tools

  1. Create tool definition in src/server/tools/<domain>.ts following the pattern:
    • Export handler function like handle<Action>(args)
  2. Register in src/server/tools/index.ts:
    • Add tool schema to registerTools() array
    • Add case to handleToolCall() switch
  3. Tool names use underscore notation: adsense_earnings_summary, adsense_list_sites

Type Definitions

  • Define types in src/types.ts
  • Tool input schemas use plain JSON Schema format for MCP

Read the full file on GitHub · 78 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 78 lines · 686 tokens per session scan A 551778701623

Subscribe to this mod's changes

adsense-mcp-server copilot-instructions.md is an instructions file published in the GitHub repository AppsYogi-com/adsense-mcp-server (5 stars, last pushed 7mo ago), licensed MIT. It adds 686 tokens to every session, about $0.0034 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.