npm whetstone-mcpstdioMITupdated 2mo ago
An MCP server for U.S. public-records data โ so AI agents and MCP clients (Claude Desktop, Cursor, etc.) can look up business records, screen names against government watchlists, and pull federal awards directly.
What can you do with whetstone mcp?
whetstone-mcp
An MCP server for U.S. public-records data โ so AI agents and MCP clients (Claude Desktop, Cursor, etc.) can look up business records, screen names against government watchlists, and pull federal awards directly.
Powered by the Whetstone actors on Apify. All data is official U.S. government public-record data.
Tools
| Tool | What it does |
|---|---|
business_search |
Official Secretary of State business registration (KYB) across 25 states |
new_business_filings |
Newly registered businesses from 10 states, windowed by date |
watchlist_screen |
Screen a name against 12 federal watchlists (OFAC, BIS, State Dept) |
federal_awards |
A company's federal contracts, grants, and loans (USAspending.gov) |
Setup
You need a free Apify API token (apify.com โ Settings โ API & Integrations). Runs bill to your Apify account under pay-per-result pricing (~$2 per 1,000 result rows; the free tier covers light use).
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"whetstone": {
"command": "npx",
"args": ["-y", "whetstone-mcp"],
"env": { "APIFY_TOKEN": "apify_api_your_token_here" }
}
}
}
Restart Claude Desktop. The four tools then appear and the agent can call them.
Any MCP client
Run the server over stdio:
APIFY_TOKEN=apify_api_... npx -y whetstone-mcp
Notes & limits
- Heavy queries can be slow. Business search across all 25 states (or filings across all
10) runs synchronously and may approach the 300-second limit. Pass a
statessubset for faster, cheaper runs. - Name-based matching. Watchlist and federal-award results are matched by name and are not identity confirmation โ verify a hit against the official source before acting. Nothing here is legal, compliance, or financial advice.
- A free, interactive version of the combined lookup is at whetstonetools.com/company-check, and there's also an n8n community node.
License
MIT ยฉ Whetstone Tools ยท support@whetstonetools.com
Install
Add whetstone mcp to your client. Pick the one you use.
claude mcp add whetstone-mcp -- npx -y whetstone-mcpcodex mcp add whetstone-mcp -- npx -y whetstone-mcpamp mcp add whetstone-mcp -- npx -y whetstone-mcp{
"mcpServers": {
"whetstone-mcp": {
"command": "npx",
"args": [
"-y",
"whetstone-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"whetstone-mcp": {
"command": "npx",
"args": [
"-y",
"whetstone-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"whetstone-mcp","command":"npx","args":["-y","whetstone-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"whetstone-mcp": {
"command": "npx",
"args": [
"-y",
"whetstone-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"whetstone-mcp": {
"command": "npx",
"args": [
"-y",
"whetstone-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"whetstone-mcp": {
"command": "npx",
"args": [
"-y",
"whetstone-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"whetstone-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"whetstone-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"whetstone-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"whetstone-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y whetstone-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
4 tools
whetstone mcp exposes 4 tools to a connected agent.
- business_search
- Official Secretary of State business registration (KYB) across 25 states
- new_business_filings
- Newly registered businesses from 10 states, windowed by date
- watchlist_screen
- Screen a name against 12 federal watchlists (OFAC, BIS, State Dept)
- federal_awards
- A company's federal contracts, grants, and loans (USAspending.gov)
Score
72 / 100
Good
- Documentation22/25
- Maintenance16/25
- Trust16/20
- Capability6/15
- Install experience12/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 76 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
- 4 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
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Jun 17, 2026 |