prospector-mcp-email-finder: Instructions file for Claude Code

CLAUDE.md

prospector-mcp-email-finder CLAUDE.md is an instructions file for Claude Code from JosieBot26/prospector-mcp-email-finder. It costs 703 tokens per session, scanned A, original, MIT.

Repository instructions for prospector-mcp-email-finder, a Model Context Protocol server template. It explains the project layout, development commands, MCP SDK usage, and how to register tools.

In plain words
What is it for?
Use them when building, testing, starting, or adding tools to this MCP server with the TypeScript SDK and Streamable HTTP transport.
Why use it?
They provide the conventions needed to develop and run the server consistently. They also show how tools should define their inputs and outputs.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md.

This is JosieBot26/prospector-mcp-email-finder's own configuration. It tells Claude Code how to work on prospector-mcp-email-finder itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything prospector-mcp-email-finder configures →

Reuse

Borrowing it

Nothing to install: this file belongs to JosieBot26/prospector-mcp-email-finder. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/JosieBot26/prospector-mcp-email-finder/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/JosieBot26/prospector-mcp-email-finder

Made for: Claude Code.

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 prospector-mcp-email-finder CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/josiebot26/prospector-mcp-email-finder/claude-md/github.svg)](https://agentmods.dev/instructions/josiebot26/prospector-mcp-email-finder/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/josiebot26/prospector-mcp-email-finder/claude-md"><img src="https://agentmods.dev/badge/instructions/josiebot26/prospector-mcp-email-finder/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for prospector-mcp-email-finder CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/josiebot26/prospector-mcp-email-finder/claude-md"><img src="https://agentmods.dev/badge/instructions/josiebot26/prospector-mcp-email-finder/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 703 This file is loaded in full into every session.
When invoked 703 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00703 $0.00703
Opus 5 $0.00351 $0.00351
Sonnet 5 $0.00141 $0.00141
Haiku 4.5 $0.00070 $0.00070

Measured 11d ago against content hash 069ba9f3c727, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

prospector-mcp-email-finder CLAUDE.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 11d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

CLAUDE.md · 126 lines

How it starts

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

MCP Server Development Guide

This is an MCP (Model Context Protocol) server template for MCPize hosting platform.

Project Structure

├── src/
│   └── index.ts      # Main server entry point
├── package.json      # Dependencies and scripts
├── tsconfig.json     # TypeScript configuration
├── mcpize.yaml       # MCPize deployment manifest
└── Dockerfile        # Container build instructions

Development Commands

npm install          # Install dependencies
npm run dev          # Run in development mode with hot reload
npm run build        # Compile TypeScript to JavaScript
npm start            # Run compiled server

MCP SDK Usage

This server uses @modelcontextprotocol/sdk with Streamable HTTP transport.

Registering Tools

server.registerTool(
  "tool-name",
  {
    title: "Human-readable title",
    description: "What this tool does",
    inputSchema: {
      param: z.string().describe("Parameter description"),
    },
    outputSchema: {
      result: z.string(),
    },
  },
  async ({ param }) => {
    const output = { result: "computed value" };
    return {
      content: [{ type: "text", text: JSON.stringify(output) }],
      structuredContent: output,
    };
  }
);

Registering Resources

Resources provide data that fills the context window:

server.registerResource(
  "resource://data",
  {
    name: "Data Resource",
    description: "Provides static or dynamic data",
    mimeType: "application/json",
  },
  async () => ({
    contents: [{ uri: "resource://data", text: JSON.stringify(data) }],
  })
);

Registering Prompts

server.registerPrompt(
  "prompt-name",
  { description: "Prompt description" },
  async () => ({
    messages: [{ role: "user", content: { type: "text", text: "..." } }],
  })
);

MCPize Configuration

The mcpize.yaml file controls deployment:

  • runtime: Server runtime (typescript, python, php)
  • entry: Main source file
  • build.install: Install command
  • build.command: Build command
  • startCommand.type: Transport type (http)
  • configSchema.source: Where to extract config schema from

Read the full file on GitHub · 126 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. 11d ago First seen · 126 lines · 703 tokens per session scan A 069ba9f3c727

Subscribe to this mod's changes

prospector-mcp-email-finder CLAUDE.md is an instructions file published in the GitHub repository JosieBot26/prospector-mcp-email-finder (11 stars, last pushed 6mo ago), licensed MIT. It adds 703 tokens to every session, about $0.0035 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.

Related

Other instructions, from other repositories