Install
$ agentstack add mcp-qwert666-mcp-server-foundry ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Foundry MCP Server
A Model Context Protocol server for interacting with Foundry. It allows AI assistants to interact with datasets, ontology objects and functions.
Tools 🌟
- list datasets
- query datasets
- list ontology objects
- query ontology objects
- list functions
- execute functions
Prerequisites
- Python 3.9+
- mcp
- pyarrow
- pandas
- foundry-platform-sdk
Environment Variables 🌍
The server requires few configuration variables to run:
| Variable | Description | Default | |------------------|----------------------------------------------------------------------|-------------| | HOSTNAME | Your hostname of your Foundry instance | required | | TOKEN | A user token that you can generate in your profile page | required* | | CLIENT_ID | A service user that is created in developer console | required* | | CLIENT_SECRET | A secret associated with the service user | required* | | SCOPES | Oauth scopes | None | | ONTOLOGY_ID | Your ontology id | required |
- if token is not provided the server will try to authenticate using the oauth2 flow with clientid and clientsecret
Usage
uv
first you need to clone the repository and add the config to your app
``` json { "mcpServers": { "foundry": { "command": "uv", "args": [ "--directory", "", "run", "mcp-server-foundry" ], "env": { "HOSTNAME": "", "TOKEN": "", "CLIENTID": "", "CLIENTSECRET": "", "SCOPES": "", "ONTOLOGY_ID": "" } } } }
## Development
To run the server in development mode:
```bash
# Clone the repository
git clone git@github.com:qwert666/mcp-server-foundry.git
# Run the server
npx @modelcontextprotocol/inspector uv --directory /path/to/mcp-foundry-server run mcp-server-foundry
Contributing
- Fork the repository
- Create your feature branch (git checkout -b feature/amazing-feature)
- Commit your changes (git commit -m 'Add some amazing feature')
- Push to the branch (git push origin feature/amazing-feature)
- Open a Pull Request
License 📜
MIT License - see LICENSE file for details
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: qwert666
- Source: qwert666/mcp-server-foundry
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.