npm isitdisposable-mcpstdioMITupdated 1mo ago
A Model Context Protocol (MCP) server that lets an AI agent check whether an email address or domain is disposable, using the isitdisposable.com application programming interface (API).
isitdisposable mcp で何ができる?
isitdisposable-mcp
A Model Context Protocol (MCP) server that lets an AI agent check whether an email address or domain is disposable, using the isitdisposable.com application programming interface (API).
Installation
The server is published to the npm registry and is normally run with npx, so there is nothing to install by hand; the examples below show how to wire it into a Model Context Protocol (MCP) host.
Claude Desktop
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"isitdisposable": {
"command": "npx",
"args": ["-y", "isitdisposable-mcp"],
"env": { "ISITDISPOSABLE_API_KEY": "your_secret_key" }
}
}
}
Claude Code
claude mcp add isitdisposable --env ISITDISPOSABLE_API_KEY=your_secret_key -- npx -y isitdisposable-mcp
Getting an API key
An isitdisposable.com key is required. Get a free key at https://isitdisposable.com (a free tier is available), then set it as ISITDISPOSABLE_API_KEY in the configuration above.
Tools
| Tool | What it does |
|---|---|
check_email |
Checks a single email address to see whether it is disposable. |
check_domain |
Checks a single bare domain (no local part) to see whether it is disposable. |
check_batch |
Checks up to 100 email addresses or bare domains at once in a single call. Mix full addresses and bare domains freely in the items list; entries containing an @ sign are sent as email addresses, everything else as a domain. |
Every tool returns the same verdict shape. disposable is the core true or false verdict: a disposable address is a throwaway or temporary inbox used to receive a single signup message and evade normal registration requirements, rather than a real, ongoing mailbox. action is the recommended handling of allow, warn, or block. A handful of opt in signals may also be present, including mx_valid (whether the domain's mail servers accept mail), relay (a forwarding or catch all style address), public_domain (a well known free provider such as Gmail), and did_you_mean (a likely intended domain when the one given looks like a typo).
Fail open behavior
This server always fails open. If a network problem, a timeout, a rate limit, or a server error prevents a real check from completing, the tool call still succeeds (it never throws or crashes the connection). It retries once after a short delay, and if that also fails, it returns a result with checked: false, disposable: null, and action: "allow", along with a note explaining that the check could not be completed. An agent using this tool should treat that outcome as inconclusive, not as a signal that the address is safe.
If no API key is configured, the server still starts normally and responds to the Model Context Protocol (MCP) handshake; each tool call then returns an error result pointing to https://isitdisposable.com to get a free key.
インストール
isitdisposable mcp をクライアントに追加します。お使いのものを選んでください。
claude mcp add isitdisposable-mcp -- npx -y isitdisposable-mcpcodex mcp add isitdisposable-mcp -- npx -y isitdisposable-mcpamp mcp add isitdisposable-mcp -- npx -y isitdisposable-mcp{
"mcpServers": {
"isitdisposable-mcp": {
"command": "npx",
"args": [
"-y",
"isitdisposable-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"isitdisposable-mcp": {
"command": "npx",
"args": [
"-y",
"isitdisposable-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"isitdisposable-mcp","command":"npx","args":["-y","isitdisposable-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"isitdisposable-mcp": {
"command": "npx",
"args": [
"-y",
"isitdisposable-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"isitdisposable-mcp": {
"command": "npx",
"args": [
"-y",
"isitdisposable-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"isitdisposable-mcp": {
"command": "npx",
"args": [
"-y",
"isitdisposable-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"isitdisposable-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"isitdisposable-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"isitdisposable-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"isitdisposable-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y isitdisposable-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
3 個のツール
isitdisposable mcp は接続したエージェントに 3 個のツールを提供します。
- check_email
- Checks a single email address to see whether it is disposable.
- check_domain
- Checks a single bare domain (no local part) to see whether it is disposable.
- check_batch
- Checks up to 100 email addresses or bare domains at once in a single call. Mix full addresses and bare domains freely in the `items` list; entries containing an `@` sign are sent as email addresses, everything else as a domain.
スコア
70 / 100
良好
- ドキュメント22/25
- メンテナンス19/25
- 信頼性13/20
- 機能4/15
- 導入のしやすさ12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 27 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 0.1.1最新 | 2026年8月5日 |
| 0.1.0 | 2026年8月5日 |