sds-mcp-server
This server allows you to search for Safety Data Sheets (SDS) for chemicals or products using the search_sds_by_name tool.
Search by name: Provide a
chemical_nameto find matching SDS records.Fuzzy matching: Set
is_containstotruefor partial or misspelled name matching;falsefor an exact match.Synonym matching: Use
include_synonymsto also match known synonyms, though performance may be slower.Limit results: Control the number of returned records with the
limitparameter (default is 25).Detailed results: Each match returns the following metadata:
id,product_name,manufacturercas_number,msds_number,revision_datehas_sdsflag indicating document availabilitysds_url– a direct link to the SDS document (usually a PDF)
Currently not supported:
Searching by CAS number
Filtering results by manufacturer
Fetching and extracting the full content of SDS documents
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sds-mcp-serverfind the SDS for acetone"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
sds-mcp-server
An MCP server that lets Claude (or any MCP client) search for Safety Data Sheets (SDS) by chemical or product name, using chemicalsafety.com's SDS search.
Tools
search_sds_by_name
Search for SDS records by chemical or product name.
Argument | Type | Default | Description |
| string | — | Chemical or product name to search for, e.g. |
| bool |
| Match names containing the text instead of requiring an exact match (useful for misspelled or partial names) |
| int |
| Max results to return (common chemicals can return 100+ matches) |
Returns a list of records with id, product_name, manufacturer, cas_number,
msds_number, revision_date, has_sds, and sds_url (a direct link to the SDS
document, usually a PDF).
Synonym matching (IncludeSynonyms) is intentionally not exposed — it's the source
endpoint's slowest query mode and was the main cause of Claude Science's local-connector
calls stalling past its response-latency comfort zone, with no real benefit for named
chemicals. is_contains covers the useful "fuzzy match" case within normal response
times.
Related MCP server: cds-mcp
Setup
python3 -m venv .venv
source .venv/bin/activate
pip install -e .Using with Claude Code
Copy .mcp.json.example to .mcp.json and update the paths to point at this repo's
.venv/bin/python3 and server.py:
cp .mcp.json.example .mcp.jsonThen edit the paths inside, restart Claude Code in this directory, and approve the project MCP server when prompted.
Using with Claude Science
Claude Science connects to local MCP servers via a custom connector, which runs under a
macOS sandbox (sandbox-exec) with restricted process execution, filesystem access, and
network access. Getting this working needs both a sandbox exception (below) and the
connector itself.
1. Allow this repo through the sandbox
Claude Science reads optional settings from ~/.claude-science/config.toml (create the
file if it doesn't exist — it's not created by default). Add this repo's path to
[sandbox] user_read_paths so the sandbox permits reading server.py and its
dependencies, and add chemicalsafety.com to [sandbox.network] allowed_domains so the
sandboxed process can actually reach the search endpoint:
[sandbox]
user_read_paths = [
"/Users/you/sds-mcp-server",
]
[sandbox.network]
allowed_domains = [
"chemicalsafety.com",
]This file is only read at startup, so restart Claude Science after editing it. See
the configuration file reference
for the full set of config.toml keys.
2. Add the connector
Run the setup steps above so
.venv/exists with dependencies installed in this repo.In Claude Science, go to Settings > Connectors > Add connector > Local command.
Fill in:
Name:
sds-lookupCommand (single field, the whole command line): the absolute path to this repo's venv Python interpreter, including its version number, followed by the absolute path to
server.py, e.g./Users/you/sds-mcp-server/.venv/bin/python3.14 /Users/you/sds-mcp-server/server.pyRun
ls .venv/bin | grep python3\\.to find your exact interpreter name (e.g.python3.14). Using the unversionedpythonorpython3symlink instead fails withsandbox-exec: execvp() of '.../.venv/bin/python' failed: Operation not permitted— the sandbox's exec check doesn't resolve the extra symlink hop those names add, but the version-numbered binary resolves directly and is covered by theuser_read_pathsgrant from step 1.
Click Add, then approve the
search_sds_by_nametool when Claude first tries to use it (or set it to Always allow on the connector's page under Tools).
No PYTHONPATH or system-Python juggling needed — once the repo is in
user_read_paths, the sandbox can execute the venv's own interpreter directly, and it
already knows where its own site-packages are.
Notes
The chemicalsafety.com search endpoint is undocumented and returns 403 unless the
request includes browser-like User-Agent, Origin, and Referer headers — this is
already handled in sds_search.py.
Roadmap
Not yet implemented:
Search by CAS number
Filter by manufacturer
Fetch and extract full SDS document content (most links are PDFs)
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that provides tools for querying the PubChem database for detailed information on chemical compounds, substances, bioassays, and molecular properties. It enables users to search by name, structure, or identifier to retrieve chemical classifications and cross-references through natural language.Last updated
- AlicenseAqualityBmaintenanceMCP server for searching and retrieving documents, metadata, and files from CERN Document Server (CDS) with optional CERN SSO authentication.Last updated6MIT
- Alicense-qualityDmaintenanceMCP server that provides semantic search, graph query, and keyword search tools for interacting with DocSmith's knowledge graph and documentation.Last updated1MIT
- Alicense-qualityDmaintenanceMCP server for documentation search that automatically indexes web documentation sites and provides semantic, full-text, or hybrid search capabilities.Last updated21MIT
Related MCP Connectors
MCP server for ScanMalware.com URL scanning, malware detection, and analysis.
Academic research MCP server for paper search, citation checks, graphs, and deep research.
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cat-people-82/sds-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server