Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

ashra-mcp

MCP.Pizza Chef: getrupt

Ashra MCP is a Model Context Protocol server designed to integrate the Ashra platform with LLMs like Claude, GPT-4, and Gemini. It enables real-time context sharing and interaction by exposing Ashra's data and functionality through the MCP standard. This server facilitates seamless communication between Ashra and AI models, supporting secure, scoped, and observable interactions for advanced AI workflows.

Use This MCP server To

Integrate Ashra platform data with LLMs for enhanced AI workflows Enable real-time context sharing between Ashra and AI models Facilitate secure and scoped model interactions with Ashra data Support multi-step reasoning using Ashra context in LLMs Configure Claude desktop to use Ashra MCP server for AI tasks

README

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.

ashra-mcp FAQ

How do I install the Ashra MCP server?
Install dependencies with 'yarn' and build the project using 'yarn build'.
How do I configure Claude to use the Ashra MCP server?
Add the Ashra MCP server configuration to 'claude_desktop_config.json' with the correct command, args, and ASHRA_API_KEY environment variable.
What environment variables are required for Ashra MCP?
You need to set 'ASHRA_API_KEY' with your Ashra API key for authentication.
Where can I find troubleshooting information for Ashra MCP?
Consult the MCP server documentation at https://modelcontextprotocol.io/quickstart/server for troubleshooting guidance.
Can Ashra MCP server work with other LLM providers?
Yes, it supports integration with multiple LLMs including Claude, OpenAI GPT-4, and Gemini.
Is Ashra MCP server compatible with nvm Node.js versions?
Yes, you can specify the Node.js binary path in the configuration if using nvm to ensure compatibility.