This read-only MCP Server allows you to connect to SAS Data Sets data from Claude Desktop through CData JDBC Drivers. For full CRUD support, check out our MCP Server for SAS Data Sets (https://www.cdata.com/drivers/sasdatasets/download/mcp).
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sas-data-sets-mcp-server-by-cdata": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
CData's Model Context Protocol (MCP) Server for SAS Data Sets
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data / analytics
Query and manage PostgreSQL databases directly from AI assistants
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP Security Weekly
Get CVE alerts and security updates for Sas Data Sets Mcp Server By Cdata and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
CData's Model Context Protocol (MCP) Server for SAS Data Sets
:heavy_exclamation_mark: This project builds a read-only MCP server. For full read, write, update, delete, and action capabilities and a simplified setup, check out our CData MCP Server for SAS Data Sets.
We created this read-only MCP Server to allow LLMs (like Claude Desktop) to query live data SAS Data Sets supported by the CData JDBC Driver for SAS Data Sets.
CData JDBC Driver connects to SAS Data Sets by exposing them as relational SQL models.
This server wraps that driver and makes SAS Data Sets data available through a simple MCP interface, so LLMs can retrieve live information by asking natural language questions — no SQL required.
git clone https://github.com/cdatasoftware/sas-data-sets-mcp-server-by-cdata.git
cd sas-data-sets-mcp-server-by-cdata
mvn clean install
This creates the JAR file: CDataMCP-jar-with-dependencies.jarlib folder in the installation directory, typically:
C:\Program Files\CData\CData JDBC Driver for SAS Data Sets\/Applications/CData JDBC Driver for SAS Data Sets/java -jar cdata.jdbc.sasdatasets.jar --licenseRun the command java -jar cdata.jdbc.sasdatasets.jar to open the Connection String utility.
Configure the connection string and click "Test Connection"
Note: If the data sources uses OAuth, you will need to authenticate in your browser.
Once successful, copy the connection string for use later.
.prp file for your JDBC connection (e.g. sas-data-sets.prp) using the following properties and format:
Prefix=sasdatasets
ServerName=CDataSASDataSets
ServerVersion=1.0
DriverPath=PATH\TO\cdata.jdbc.sasdatasets.jar
DriverClass=cdata.jdbc.sasdatasets.SASDataSetsDriver
JdbcUrl=jdbc:sasdatasets:InitiateOAuth=GETANDREFRESH;
Tables=
Create the config file for Claude Desktop ( claude_desktop_config.json) to add the new MCP server, using the format below. If the file already exists, add the entry to the mcpServers in the config file.
Windows
{
"mcpServers": {
"{classname_dash}": {
"command": "PATH\\TO\\java.exe",
"args": [
"-jar",
"PATH\\TO\\CDataMCP-jar-with-dependencies.jar",
"PATH\\TO\\sas-data-sets.prp"
]
},
...
}
}
Linux/Mac