npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@gojasper/mcp-server

v1.0.0-beta.8

Published

Jasper AI MCP Server

Readme

Jasper AI MCP Server

The Jasper AI MCP server enables AI clients to seamlessly integrate with Jasper's powerful content generation and marketing tools. This server opens up new possibilities for developers to build AI-powered applications that leverage Jasper's advanced capabilities.

What is MCP?

MCP (Model Context Protocol) is an emerging standard that allows AI models to interact with applications through a consistent interface. It acts as an abstraction layer over HTTP, letting AI agents access application functionality without needing to understand specific API protocols.

Prerequisites

  • Node.js and npm: Ensure you have Node.js (version >=20.0.0) and npm installed. You can download them from the official Node.js website.
  • Jasper AI API Key: You'll need a Jasper AI API key to authenticate with the service. You can obtain one from your Jasper account settings.

Installation and Setup

  1. Install the package:

    npm install @gojasper/mcp-server
  2. Configure your AI client:

    Add the server configuration to your AI client's configuration file. For example, in Claude Desktop, you would modify claude_desktop_config.json:

    {
      "mcpServers": {
        "jasper": {
          "command": "npx",
          "args": ["-y", "@gojasper/mcp-server"],
          "env": {
            "JASPER_API_KEY": "<your-jasper-api-key>"
          }
        }
      }
    }
  3. Restart your AI client: After saving the configuration, you may need to restart your AI client to apply the changes. You should now have access to the Jasper tools.

Available Tools

This MCP server provides a set of tools for interacting with the Jasper AI API.

| Tool Name | Description | | ------------------------- | ------------------------------------------------------------------------------------------------------------------------ | | generate-content | Generates content based on a given command, with options for specifying audience, tone, style, and background knowledge. | | apply-style | Applies a specified style guide's rules to the provided text content, ensuring it conforms to your brand's standards. | | search-knowledge-base | Searches your Jasper knowledge base for relevant documents and information. | | get-jasper-audiences | Retrieves a list of defined audiences from your Jasper account. | | get-jasper-brand-voices | Retrieves a list of defined brand voices/tones from your Jasper account. | | get-jasper-style-guides | Retrieves your Jasper style guide ID. |

Example Usage

Here are some example prompts you can use with an AI client that has the Jasper MCP server configured:

  • "Generate a blog post about the benefits of using AI in marketing."
  • "Rewrite the following paragraph in a more professional tone: [your paragraph here]"
  • "What are the key points from our last marketing meeting? (searches knowledge base)"
  • "List all available audiences for our marketing campaigns."