trackmcp
Back to directory
latecheckout

jasper-mcp-proto

View on GitHub

Jasper AI

0 stars TypeScriptOthers Updated Jun 30, 2025

Documentation

Jasper AI MCP Server Prototype

This repository contains a prototype Model Context Protocol (MCP) server for interacting with the Jasper AI API.

Setup

Cursor/Windsurf

To use this Jasper MCP server with Windsurf, add the following configuration to your Windsurf `mcp_config.json` file:

json
"jasper": {
  "command": "npx",
  "args": ["-y", "https://github.com/latecheckout/jasper-mcp-proto"],
  "env": {
    "JASPER_API_KEY": "YOUR_JASPER_API_KEY"
  }
}

Replace `YOUR_JASPER_API_KEY` with your actual Jasper API key.

1. Open the Claude Desktop application.

2. Navigate to `Settings` (or `Preferences`).

3. Go to the `Extensions` tab.

4. Download the jasper-mcp-prototype.dxt file.

5. Drag and drop this file into the extensions window of Claude Desktop.

6. Click Install

7. Add your Jasper API Key in the configuration input

8. Enable the extension using the toggle.

Claude Desktop Local Build

Claude Desktop can have issues running MCP servers with NPX, especially when node is managed with nvm. If you cannot install with the above method, follow these steps instead:

1. Prerequisites:

  • Ensure you have the Claude Desktop App installed. These instructions are tailored for the desktop app, as browser-based MCP integration might differ.
  • You'll need Node.js and pnpm. If you don't have Node.js, install it from nodejs.org. You can install pnpm via npm: `npm install -g pnpm`.

2. Download and Build the Jasper MCP Server:

  • Clone this repository (if you haven't already):
bash
git clone https://github.com/latecheckout/jasper-mcp-proto.git
  cd jasper-mcp-prototype
  • Install dependencies:
bash
pnpm install
  • Build the project:
bash
pnpm run build

This will create a `dist/index.js` file in the project directory.

3. Obtain Necessary File Paths:

  • Node Executable Path:

Open your terminal and run:

bash
which node

Copy the full path displayed (e.g., `/Users/yourusername/.nvm/versions/node/v18.17.0/bin/node` or `/usr/local/bin/node`).

  • Absolute Path to `dist/index.js`:

Navigate to the root directory of the `jasper-mcp-prototype` (if you're not already there). Then run:

bash
echo "$(pwd)/dist/index.js"

Copy the full path displayed (e.g., `/Users/yourusername/path/to/jasper-mcp-prototype/dist/index.js`).

4. Configure Claude Desktop App:

  • Open your Claude Desktop App.
  • Go to `Settings` (or Preferences).
  • Find the `Developer` tab or section.
  • Click on `Edit Config` (or a similarly named option to edit the MCP server configuration). This will open a JSON configuration file (often named `claude_desktop_config.json` or similar) in a text editor.
  • Add or modify the `mcpServers` object in this file. If `mcpServers` doesn't exist, you can add the whole structure. If it does, add `jasper-ai` as a new key within it:
json
{
    "mcpServers": {
      ...
      "jasper": {
        "command": "PASTE_YOUR_NODE_EXECUTABLE_PATH_HERE",
        "args": ["PASTE_YOUR_ABSOLUTE_PATH_TO_DIST/INDEX.JS_HERE"],
        "env": {
          "JASPER_API_KEY": "YOUR_JASPER_API_KEY_HERE"
        }
      }
    }
  }

Important:

  • Replace `"PASTE_YOUR_NODE_EXECUTABLE_PATH_HERE"` with the Node executable path you copied in step 3a.
  • Replace `"PASTE_YOUR_ABSOLUTE_PATH_TO_DIST/INDEX.JS_HERE"` with the absolute path to `dist/index.js` you copied in step 3b.
  • Replace `"YOUR_JASPER_API_KEY_HERE"` with your actual Jasper API key.
  • Ensure the resulting file is valid JSON. If you're adding `jasper` to an existing `mcpServers` object, make sure to add a comma after the preceding server entry if necessary.

5. Restart Claude:

  • Save the changes to the configuration file.
  • Completely close and restart the Claude Desktop App for the new MCP server configuration to take effect.

You should now be able to use the Jasper MCP tools via this local MCP server in Claude.

Usage

Once correctly setup in your environment, you can ask the LLM to use jasper to write content for you. For example:

code
Use jasper to write a blog post about the latest trends in AI. Pick an appropriate tone, and audience.

Installation

1. Clone the repository:

bash
git clone 
    cd jasper-mcp

2. Install dependencies:

This project uses `pnpm` as the package manager.

bash
pnpm install

Development Flow

bash
pnpm run dev
  • Run in development mode:

This command starts the server and uses `@modelcontextprotocol/inspector`. You can use the inspector to test out the MCP server.

  • Note: There isn't hot reloading. After making changes to the code, you'll need to run `pnpm build` and then click the restart button in the MCP inspector to see your changes.

Tools and Resources

This MCP server provides the following tools and resources:

Tools

1. `generate-content`:

    2. `apply-style`:

      3. `get-jasper-style-guides`:

        4. `get-jasper-brand-voices`:

          5. `get-jasper-audiences`:

            Resources

            1. `jasper://styles` (Registered as `jasper-styles`):

              2. `jasper://brandvoices` (Registered as `jasper-brand-voices`):

                3. `jasper://audiences` (Registered as `jasper-audiences`):

                  Frequently asked questions

                  What is jasper-mcp-proto?

                  jasper-mcp-proto is Jasper AI

                  How do I install jasper-mcp-proto?

                  Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

                  Is jasper-mcp-proto open source?

                  Yes — it is hosted on GitHub at https://github.com/latecheckout/jasper-mcp-proto.

                  Related MCP tools

                  Run your own MCP server? See who uses it and what to fix.

                  Measure it with TrackMCP