Archestra Apps HackathonSee what people are building
Back to Catalog

ashra-mcp

getrupt/ashra-mcp
๐Ÿ”— Latest commit:dae1ad6
TypeScript
AI Tools

A Model Context Protocol server for Ashra

GitHub Metrics
Repository statistics and activity
โญ GitHub Stars:40
๐Ÿ‘ฅ Contributors:1
๐Ÿ“‹ Total Issues:0
๐Ÿ“ฆ Has Releases:No
๐Ÿ”ง Has CI/CD Pipeline:No
Configuration
Configuration example extracted from README.md for Claude Desktop and other clients.
{
  "ashra-mcp-configured": {
    "command": "node",
    "args": [
      "<path/to/ashra-mcp>/build/index.js"
    ],
    "env": {
      "ASHRA_API_KEY": "<YOUR-API-KEY>"
    }
  }
}
README.md

Ashra MCP

A Model Context Protocol server for Ashra.

Usage

Install dependencies:

yarn

Build the project:

yarn build

Claude Configuration

Download the latest version of Claude.

Add to or create the following file claude_desktop_config.json in cd ~/Library/Application\ Support/Claude:

{
  "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>"
      }
    }
  }
}

Troubleshooting

Consult the MCP server documentation for more information.