usda-mcp-server
Rank #8,472io.github.cyanheads/usda-mcp-server
Search foods, compare nutrients, and look up the full USDA FoodData Central database.
usda-mcp-server is a Model Context Protocol (MCP) server published by cyanheads. It ranks #8,472 of 132,046 servers tracked on MCP Toplist, and its repository has 1 GitHub stars. usda-mcp-server is listed across 4 registries — Official MCP, PulseMCP, Smithery and Glama, with 9 tracked versions. It was first listed on May 25, 2026 and most recently updated on Sep 22, 2026.
Ranks ahead of 123,574 of 132,046 servers on MCP Toplist.
Use usda-mcp-server
No credentials or required configuration declared — add it to your MCP client and go.
claude mcp add --transport http usda-mcp-server https://usda.caseyjhand.com/mcpclaude mcp add usda-mcp-server -e "USDA_FDC_API_KEY=<your USDA_FDC_API_KEY>" -e "MCP_LOG_LEVEL=<your MCP_LOG_LEVEL>" -- npx -y @cyanheads/usda-mcp-server run start:stdioReplace each placeholder with your own value before saving.
claude mcp add usda-mcp-server -e "USDA_FDC_API_KEY=<your USDA_FDC_API_KEY>" -e "MCP_HTTP_HOST=<your MCP_HTTP_HOST>" -e "MCP_HTTP_PORT=<your MCP_HTTP_PORT>" -e "MCP_HTTP_ENDPOINT_PATH=<your MCP_HTTP_ENDPOINT_PATH>" -e "MCP_AUTH_MODE=<your MCP_AUTH_MODE>" -e "MCP_LOG_LEVEL=<your MCP_LOG_LEVEL>" -- npx -y @cyanheads/usda-mcp-server run start:httpReplace each placeholder with your own value before saving.
[mcp_servers.usda-mcp-server]
url = "https://usda.caseyjhand.com/mcp"Add to ~/.codex/config.toml.
[mcp_servers.usda-mcp-server]
command = "npx"
args = ["-y", "@cyanheads/usda-mcp-server", "run", "start:stdio"]
[mcp_servers.usda-mcp-server.env]
USDA_FDC_API_KEY = "<your USDA_FDC_API_KEY>"
MCP_LOG_LEVEL = "<your MCP_LOG_LEVEL>"Add to ~/.codex/config.toml. Replace each placeholder with your own value before saving.
[mcp_servers.usda-mcp-server]
command = "npx"
args = ["-y", "@cyanheads/usda-mcp-server", "run", "start:http"]
[mcp_servers.usda-mcp-server.env]
USDA_FDC_API_KEY = "<your USDA_FDC_API_KEY>"
MCP_HTTP_HOST = "<your MCP_HTTP_HOST>"
MCP_HTTP_PORT = "<your MCP_HTTP_PORT>"
MCP_HTTP_ENDPOINT_PATH = "<your MCP_HTTP_ENDPOINT_PATH>"
MCP_AUTH_MODE = "<your MCP_AUTH_MODE>"
MCP_LOG_LEVEL = "<your MCP_LOG_LEVEL>"Add to ~/.codex/config.toml. Replace each placeholder with your own value before saving.
https://usda.caseyjhand.com/mcpSettings → Connectors → “Add custom connector”, then paste this URL.
{
"mcpServers": {
"usda-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:stdio"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Add to claude_desktop_config.json (Settings → Developer → Edit Config). Replace each placeholder with your own value before saving.
{
"mcpServers": {
"usda-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:http"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_HTTP_HOST": "<your MCP_HTTP_HOST>",
"MCP_HTTP_PORT": "<your MCP_HTTP_PORT>",
"MCP_HTTP_ENDPOINT_PATH": "<your MCP_HTTP_ENDPOINT_PATH>",
"MCP_AUTH_MODE": "<your MCP_AUTH_MODE>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Add to claude_desktop_config.json (Settings → Developer → Edit Config). Replace each placeholder with your own value before saving.
{
"mcpServers": {
"usda-mcp-server": {
"url": "https://usda.caseyjhand.com/mcp"
}
}
}Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project).
{
"mcpServers": {
"usda-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:stdio"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project). Replace each placeholder with your own value before saving.
{
"mcpServers": {
"usda-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:http"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_HTTP_HOST": "<your MCP_HTTP_HOST>",
"MCP_HTTP_PORT": "<your MCP_HTTP_PORT>",
"MCP_HTTP_ENDPOINT_PATH": "<your MCP_HTTP_ENDPOINT_PATH>",
"MCP_AUTH_MODE": "<your MCP_AUTH_MODE>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project). Replace each placeholder with your own value before saving.
{
"servers": {
"usda-mcp-server": {
"type": "http",
"url": "https://usda.caseyjhand.com/mcp"
}
}
}Save as .vscode/mcp.json in your workspace.
{
"servers": {
"usda-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:stdio"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Save as .vscode/mcp.json in your workspace. Replace each placeholder with your own value before saving.
{
"servers": {
"usda-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:http"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_HTTP_HOST": "<your MCP_HTTP_HOST>",
"MCP_HTTP_PORT": "<your MCP_HTTP_PORT>",
"MCP_HTTP_ENDPOINT_PATH": "<your MCP_HTTP_ENDPOINT_PATH>",
"MCP_AUTH_MODE": "<your MCP_AUTH_MODE>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Save as .vscode/mcp.json in your workspace. Replace each placeholder with your own value before saving.
{
"mcpServers": {
"usda-mcp-server": {
"serverUrl": "https://usda.caseyjhand.com/mcp"
}
}
}Add to ~/.codeium/windsurf/mcp_config.json.
{
"mcpServers": {
"usda-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:stdio"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Add to ~/.codeium/windsurf/mcp_config.json. Replace each placeholder with your own value before saving.
{
"mcpServers": {
"usda-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:http"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_HTTP_HOST": "<your MCP_HTTP_HOST>",
"MCP_HTTP_PORT": "<your MCP_HTTP_PORT>",
"MCP_HTTP_ENDPOINT_PATH": "<your MCP_HTTP_ENDPOINT_PATH>",
"MCP_AUTH_MODE": "<your MCP_AUTH_MODE>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Add to ~/.codeium/windsurf/mcp_config.json. Replace each placeholder with your own value before saving.
{
"mcpServers": {
"usda-mcp-server": {
"url": "https://usda.caseyjhand.com/mcp"
}
}
}{
"mcpServers": {
"usda-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:stdio"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Replace each placeholder with your own value before saving.
{
"mcpServers": {
"usda-mcp-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/usda-mcp-server",
"run",
"start:http"
],
"env": {
"USDA_FDC_API_KEY": "<your USDA_FDC_API_KEY>",
"MCP_HTTP_HOST": "<your MCP_HTTP_HOST>",
"MCP_HTTP_PORT": "<your MCP_HTTP_PORT>",
"MCP_HTTP_ENDPOINT_PATH": "<your MCP_HTTP_ENDPOINT_PATH>",
"MCP_AUTH_MODE": "<your MCP_AUTH_MODE>",
"MCP_LOG_LEVEL": "<your MCP_LOG_LEVEL>"
}
}
}
}Replace each placeholder with your own value before saving.
Show your rank
Maintain this server? Add the live rank badge to your README — it updates automatically as the leaderboard changes.
[](https://mcptoplist.com/server/io.github.cyanheads%2Fusda-mcp-server)<a href="https://mcptoplist.com/server/io.github.cyanheads%2Fusda-mcp-server"><img src="https://mcptoplist.com/badge/io.github.cyanheads%2Fusda-mcp-server.svg" alt="MCP Toplist: Top 10% of 132,046" /></a>Variants: append ?metric=score or ?metric=stars to the image URL.
Listed on 4 registries
cyanheads
Other servers by cyanheads
- MCP Ts Core#59 · 194 vers
- obsidian-mcp-server#153 · 34 vers
- Pubmed MCP Server#203 · 87 vers
- Clinicaltrialsgov MCP Server#372 · 71 vers
- Git MCP Server#429 · 43 vers
- Openalex MCP Server#1,359 · 47 vers
- Secedgar MCP Server#1,466 · 57 vers
- Pubchem MCP Server#1,719 · 37 vers
- @cyanheads/eur-lex-mcp-server#1,826 · 36 vers
- ntfy-mcp-server#1,882 · 12 vers
- @cyanheads/openstreetmap-mcp-server#2,033 · 41 vers
- toolkit-mcp-server#2,133 · 8 vers
Available versions (9)
| Version | Published |
|---|---|
| 0.1.11 | Sep 22, 2026 |
| 0.1.10 | Sep 16, 2026 |
| 0.1.9 | Aug 25, 2026 |
| 0.1.8 | Aug 13, 2026 |
| 0.1.7 | Aug 13, 2026 |
| 0.1.6 | Jun 20, 2026 |
| 0.1.5 | Jun 13, 2026 |
| 0.1.4 | May 25, 2026 |
| 0.1.3 | May 25, 2026 |
Frequently asked questions
- Who maintains usda-mcp-server?
- usda-mcp-server is maintained by cyanheads, which publishes 135 MCP servers (2337 total versions) tracked on MCP Toplist.
- Is usda-mcp-server listed on the Official MCP Registry?
- Yes — usda-mcp-server is listed on the Official MCP Registry, alongside PulseMCP, Smithery and Glama.
- How many versions does usda-mcp-server have?
- MCP Toplist tracks 9 versions of usda-mcp-server, most recently published on Sep 22, 2026.
- Where can I find the source code for usda-mcp-server?
- The source code for usda-mcp-server is hosted at github.com/cyanheads/usda-mcp-server.
Do you run this server?
Community projects list the MCP servers behind real agents and apps. Publish yours and this page will link to it.