- Home
- MCP servers
- Ashra
Ashra
- typescript
58
GitHub Stars
typescript
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.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"getrupt-ashra-mcp": {
"command": "node",
"args": [
"<path/to/ashra-mcp>/build/index.js"
],
"env": {
"ASHRA_API_KEY": "<YOUR-API-KEY>"
}
}
}
}Ashra MCP provides a Model Context Protocol server for Ashra, enabling programmatic interactions with model context and allowing Claude-based workflows to communicate with Ashra capabilities from your environment.
How to use
You run the Ashra MCP server locally and connect your MCP client to it using the stdio-based workflow. The server is designed to be invoked via Node and exposes its entry point from the build output. Provide your API key when configuring Claude so the integration can authorize requests to Ashra.
How to install
Prerequisites: you need Node.js installed or available through your preferred Node version manager, and you will use a package manager to install dependencies for the Ashra MCP project.
Install dependencies with your package manager.
Build the project to generate the MCP server artifacts.
Run the server as described in the Claude configuration snippet to start serving MCP requests.
# Install dependencies
yarn
# Build the project
yarn build
# After building, run or reference the produced entry point from your environment as needed
Claude Configuration
Configure Claude to load the Ashra MCP server by adding or creating the following file claude_desktop_config.json in your Claude configuration directory:
{
"mcpServers": {
"ashra": {
"command": "node",
// OR if you're using nvm and the version picked is not preferred/working
// "command": "/Users/<user>/.nvm/versions/node/<version>/bin/node",
"args": ["<path/to/ashra-mcp>/build/index.js"],
"env": {
"ASHRA_API_KEY": "<YOUR-API-KEY>"
}
}
}
}