What is the Usda Fdc MCP server?
USDA Food Data Central MCP
How to install Usda Fdc
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"usda-fdc": {
"url": "https://gateway.pipeworx.io/usda-fdc/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"usda-fdc": {
"serverUrl": "https://gateway.pipeworx.io/usda-fdc/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"usda-fdc": {
"type": "http",
"url": "https://gateway.pipeworx.io/usda-fdc/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"usda-fdc": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/usda-fdc/mcp"
]
}
}
}Claude Code
claude mcp add --transport http usda-fdc https://gateway.pipeworx.io/usda-fdc/mcp