- Home
- MCP servers
- Alkemi
Alkemi
- javascript
3
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You can connect Alkemi Data to your MCP Client through a dedicated MCP Server that runs as a STDIO wrapper around the Streamable HTTP MCP Endpoint. This server stores database metadata, generates valid queries for your schemas, and executes them against your data sources so you and your teammates share consistent querying capabilities.
How to use
Choose your integration method based on your workflow. If you want to run the MCP server locally and feed data through your client via standard input/output, use the STDIO configuration with a local node process. If you prefer a remote endpoint, you can connect through the HTTP URL and let the MCP Client reach the server directly.
How to install
Prerequisites: you need Node.js and npm installed on your system.
Install dependencies and build the server during development.
npm install
npm run build
npm run watch
npm run inspector
# Optional: run the MCP Inspector to access debugging tools in your browser
npm run inspector
Configuration examples for MCP clients
{
"mcpServers": {
"alkemi": {
"command": "npx",
"args": [
"@alkemiai/alkemi-mcp"
],
"env": {
"BEARER_TOKEN": "sk-12345"
}
}
}
}
Running as a STDIO server locally
If you prefer running the MCP server locally via STDIO, start the Node process that serves the MCP endpoint and pass your configuration through environment variables.
{
"mcpServers": {
"alkemi-data": {
"command": "node",
"args": [
"/path/to/alkemi-mcp/build/index.js"
],
"env": {
"BEARER_TOKEN": "sk-12345"
}
}
}
}
Available tools
MCP Inspector
Provides a URL to access debugging tools in your browser to help you inspect and troubleshoot MCP server activity.