SheetsData MCP

SheetsData MCP

Provides AI agents with instant, structured access to electronic component datasheets, pinouts, and electrical specifications without requiring PDF uploads. It enables seamless part searching, design validation, and side-by-side component comparisons across major hardware providers.

Category
访问服务器

README

SheetsData MCP

Electronic component datasheets for AI agents — specs, pinouts, package data on demand. No PDFs required.

SheetsData is an MCP server that gives AI agents instant, structured access to electronic component data. One tool call returns the pinout. Another returns electrical specs. No PDFs. No uploads. No context window stuffing.

Beta — SheetsData is currently in public beta. APIs, pricing, and features may change. See Disclaimer below.

<p align="center"> <a href="https://sheetsdata.com/signup">Get API Key</a>  ·  <a href="https://sheetsdata.com">Website</a> </p>

Demo

Agent: search_parts("buck converter 3A 28V")
→ TPS54302, LM2596, MP2315 with stock & pricing from JLCPCB, Mouser, DigiKey

Agent: read_datasheet("TPS54302", section="pinout")
→ Pin table: BOOT(6), EN(5), FB(4), GND(1), SW(2), VIN(3)

Agent: check_design_fit("TPS54302", input_voltage=12, output_current=2)
→ PASS — all parameters within datasheet limits

Agent: find_alternative("TPS54302", constraints="in_stock,jlcpcb")
→ MP2315, TPS54331 ranked by package/spec match

The agent never sees a PDF. Engineers can optionally upload proprietary datasheets for private parts.

Tools

Tool Description
search_parts Search by part number or keyword across JLCPCB, Mouser, DigiKey. Results merged by MPN with pricing and stock.
search_datasheets Semantic search across all extracted datasheets. Natural language queries like "low-noise LDO with PSRR above 70dB".
prefetch_datasheets Batch warm-up extraction for up to 20 parts. Fire-and-forget — reduces wait times.
check_extraction_status Poll extraction progress after prefetch or read_datasheet.
get_part_details Full component details — pricing, stock, parameters from all providers.
read_datasheet Structured datasheet sections (summary, pinout, electrical, abs_max, package) or semantic search within a datasheet.
compare_parts Compare 2–5 parts side by side with merged provider data.
check_design_fit Validate operating conditions against datasheet limits. PASS/FAIL/WARNING per parameter.
find_alternative Find alternative/substitute components by specs, package, or availability.
analyze_image Vision AI analysis of datasheet images — graphs, package drawings, pin diagrams.

Prompts

Built-in prompt templates that guide the agent through common hardware engineering tasks:

Prompt Description
component-selection Walk through selecting a component: define requirements, search candidates, compare specs, validate design fit.
bom-review Review a bill of materials: look up each part, check stock and lifecycle, flag risks, suggest alternatives.
datasheet-deep-dive Deep-dive into a specific part: summarize, extract pinout, electrical specs, absolute max ratings, and application circuit.
design-validation Validate a design: check each component against operating conditions, flag out-of-spec parameters.
second-source Find second-source alternatives for a part: match package, specs, and availability across providers.

Resources

Data the server exposes for agent context:

Resource Description
sheetsdata://providers List of active component data providers (JLCPCB, Mouser, DigiKey, Nexar) and their current status.
sheetsdata://workflow Recommended tool workflow for component selection — search, evaluate, read datasheet, validate, compare.

Install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "sheetsdata": {
      "url": "https://mcp.sheetsdata.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Claude Code

claude mcp add sheetsdata \
  --transport http \
  "https://mcp.sheetsdata.com/mcp" \
  --header "Authorization: Bearer YOUR_API_KEY"

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "sheetsdata": {
      "url": "https://mcp.sheetsdata.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Or use the deep link: cursor://anysphere.cursor-deeplink/mcp/install?name=SheetsData&config=...

VS Code (GitHub Copilot)

Add to your VS Code settings.json:

{
  "mcp": {
    "servers": {
      "sheetsdata": {
        "type": "http",
        "url": "https://mcp.sheetsdata.com/mcp",
        "headers": {
          "Authorization": "Bearer YOUR_API_KEY"
        }
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "sheetsdata": {
      "url": "https://mcp.sheetsdata.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Cline

In VS Code, open Cline MCP Settings and add:

{
  "mcpServers": {
    "sheetsdata": {
      "url": "https://mcp.sheetsdata.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      },
      "disabled": false
    }
  }
}

Amp (Sourcegraph)

Add to Amp settings:

{
  "amp.mcpServers": {
    "sheetsdata": {
      "url": "https://mcp.sheetsdata.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Zed

Add to Zed settings.json:

{
  "context_servers": {
    "sheetsdata": {
      "settings": {
        "url": "https://mcp.sheetsdata.com/mcp",
        "headers": {
          "Authorization": "Bearer YOUR_API_KEY"
        }
      }
    }
  }
}

Continue.dev

Add to ~/.continue/config.yaml:

mcpServers:
  - name: sheetsdata
    url: https://mcp.sheetsdata.com/mcp
    headers:
      Authorization: "Bearer YOUR_API_KEY"

npx (stdio proxy for any client)

For clients that only support stdio transport:

SHEETSDATA_API_KEY=your_key npx sheetsdata-mcp

Or with the --api-key flag:

npx sheetsdata-mcp --api-key your_key

Get Your API Key

  1. Sign up at sheetsdata.com/signup
  2. Go to Dashboard → API Keys
  3. Create a new key and paste it into the config above

Recommended Workflow

1. search_parts       → Find candidates by keyword or part number
2. get_part_details    → Evaluate pricing, stock, parameters
3. read_datasheet      → Get detailed specs (pinout, electrical, package)
4. check_design_fit    → Validate against your operating conditions
5. find_alternative    → Find substitutes if needed
6. compare_parts       → Side-by-side comparison of finalists

Support

Disclaimer

SheetsData is currently in public beta. Data is extracted from publicly available manufacturer datasheets using automated tools including AI. It may contain errors, omissions, or inaccuracies.

SheetsData and Octoco Ltd provide this data on an "as is" basis and make no warranties, express or implied, regarding the accuracy, completeness, or fitness for any particular purpose. Always verify critical specifications against the official manufacturer datasheet before making design, purchasing, or manufacturing decisions.

By using this service, you acknowledge that:

  • Extracted data may differ from the original manufacturer datasheet
  • SheetsData is not a substitute for reviewing official documentation
  • Octoco Ltd is not liable for any damages, losses, or design failures arising from the use of this data
  • Features, APIs, and pricing are subject to change during the beta period

For terms of use, see sheetsdata.com/terms.

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选