How to integrate Hashnode MCP with Mastra AI

This guide walks you through connecting Hashnode to Mastra AI using the Composio tool router. By the end, you'll have a working Hashnode agent that can list your most recent hashnode articles, check if 'devjournal.com' domain is available, fetch popular tags for trending topics through natural language commands. This guide will help you understand how to give your Mastra AI agent real control over a Hashnode account through Composio's Hashnode MCP server. Before we dive in, let's take a quick look at the key ideas and tools involved.

Hashnode logoHashnode
Api Key

Hashnode is a blogging platform designed for developers to create, manage, and share technical content. It streamlines publishing and helps grow your dev audience effortlessly.

67 Tools

Introduction

This guide walks you through connecting Hashnode to Mastra AI using the Composio tool router. By the end, you'll have a working Hashnode agent that can list your most recent hashnode articles, check if 'devjournal.com' domain is available, fetch popular tags for trending topics through natural language commands.

This guide will help you understand how to give your Mastra AI agent real control over a Hashnode account through Composio's Hashnode MCP server.

Before we dive in, let's take a quick look at the key ideas and tools involved.

Also integrate Hashnode with

TL;DR

Here's what you'll learn:
  • Set up your environment so Mastra, OpenAI, and Composio work together
  • Create a Tool Router session in Composio that exposes Hashnode tools
  • Connect Mastra's MCP client to the Composio generated MCP URL
  • Fetch Hashnode tool definitions and attach them as a toolset
  • Build a Mastra agent that can reason, call tools, and return structured results
  • Run an interactive CLI where you can chat with your Hashnode agent

What is Mastra AI?

Mastra AI is a TypeScript framework for building AI agents with tool support. It provides a clean API for creating agents that can use external services through MCP.

Key features include:

  • MCP Client: Built-in support for Model Context Protocol servers
  • Toolsets: Organize tools into logical groups
  • Step Callbacks: Monitor and debug agent execution
  • OpenAI Integration: Works with OpenAI models via @ai-sdk/openai

What is the Hashnode MCP server, and what's possible with it?

The Hashnode MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Hashnode account. It provides structured and secure access to your blog and developer publication data, so your agent can fetch articles, manage publication invites, reply to comments, and explore tags or user details on your behalf.

  • Fetch and analyze articles: Let your agent retrieve single articles or lists of posts from your publications, making it easy to summarize, review, or manage your content.
  • Publication invite handling: Effortlessly accept publication invitations or view all your pending invites, streamlining the process of joining new developer teams or publications.
  • Interact with comments and replies: Have your agent add replies to existing comments, enabling automated engagement and conversation management on your posts.
  • Tag discovery and trend tracking: Easily fetch popular tags so your agent can suggest relevant topics, optimize your writing focus, or help you follow industry trends.
  • User and publication insights: Retrieve detailed profile information for any user or publication, giving your agent the context needed for personalized recommendations and content actions.

What is the Composio tool router, and how does it fit here?

What is Composio SDK?

Composio's Composio SDK helps agents find the right tools for a task at runtime. You can plug in multiple toolkits (like Gmail, HubSpot, and GitHub), and the agent will identify the relevant app and action to complete multi-step workflows. This can reduce token usage and improve the reliability of tool calls. Read more here: Getting started with Composio SDK

The tool router generates a secure MCP URL that your agents can access to perform actions.

How the Composio SDK works

The Composio SDK follows a three-phase workflow:

  1. Discovery: Searches for tools matching your task and returns relevant toolkits with their details.
  2. Authentication: Checks for active connections. If missing, creates an auth config and returns a connection URL via Auth Link.
  3. Execution: Executes the action using the authenticated connection.

Step-by-step Guide

Step by step09 STEPS
1

Prerequisites

Before starting, make sure you have:
  • Node.js 18 or higher
  • A Composio account with an active API key
  • An OpenAI API key
  • Basic familiarity with TypeScript
2

Getting API Keys for OpenAI and Composio

OpenAI API Key
  • Go to the OpenAI dashboard and create an API key.
  • You need credits or a connected billing setup to use the models.
  • Store the key somewhere safe.
Composio API Key
  • Log in to the Composio dashboard.
  • Go to Settings and copy your API key.
  • This key lets your Mastra agent talk to Composio and reach Hashnode through MCP.
3

Install dependencies

bash
npm install @composio/core @mastra/core @mastra/mcp @ai-sdk/openai dotenv

Install the required packages.

What's happening:

  • @composio/core is the Composio SDK for creating MCP sessions
  • @mastra/core provides the Agent class
  • @mastra/mcp is Mastra's MCP client
  • @ai-sdk/openai is the model wrapper for OpenAI
  • dotenv loads environment variables from .env
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
COMPOSIO_USER_ID=your_user_id_here
OPENAI_API_KEY=your_openai_api_key_here

Create a .env file in your project root.

What's happening:

  • COMPOSIO_API_KEY authenticates your requests to Composio
  • COMPOSIO_USER_ID tells Composio which user this session belongs to
  • OPENAI_API_KEY lets the Mastra agent call OpenAI models
5

Import libraries and validate environment

typescript
import "dotenv/config";
import { openai } from "@ai-sdk/openai";
import { Agent } from "@mastra/core/agent";
import { MCPClient } from "@mastra/mcp";
import { Composio } from "@composio/core";
import * as readline from "readline";

import type { AiMessageType } from "@mastra/core/agent";

const openaiAPIKey = process.env.OPENAI_API_KEY;
const composioAPIKey = process.env.COMPOSIO_API_KEY;
const composioUserID = process.env.COMPOSIO_USER_ID;

if (!openaiAPIKey) throw new Error("OPENAI_API_KEY is not set");
if (!composioAPIKey) throw new Error("COMPOSIO_API_KEY is not set");
if (!composioUserID) throw new Error("COMPOSIO_USER_ID is not set");

const composio = new Composio({
  apiKey: composioAPIKey as string,
});
What's happening:
  • dotenv/config auto loads your .env so process.env.* is available
  • openai gives you a Mastra compatible model wrapper
  • Agent is the Mastra agent that will call tools and produce answers
  • MCPClient connects Mastra to your Composio MCP server
  • Composio is used to create a Tool Router session
6

Create a Tool Router session for Hashnode

typescript
async function main() {
  const session = await composio.create(
    composioUserID as string,
    {
      toolkits: ["hashnode"],
    },
  );

  const composioMCPUrl = session.mcp.url;
  console.log("Hashnode MCP URL:", composioMCPUrl);
What's happening:
  • create spins up a short-lived MCP HTTP endpoint for this user
  • The toolkits array contains "hashnode" for Hashnode access
  • session.mcp.url is the MCP URL that Mastra's MCPClient will connect to
7

Configure Mastra MCP client and fetch tools

typescript
const mcpClient = new MCPClient({
    id: composioUserID as string,
    servers: {
      nasdaq: {
        url: new URL(composioMCPUrl),
        requestInit: {
          headers: session.mcp.headers,
        },
      },
    },
    timeout: 30_000,
  });

console.log("Fetching MCP tools from Composio...");
const composioTools = await mcpClient.getTools();
console.log("Number of tools:", Object.keys(composioTools).length);
What's happening:
  • MCPClient takes an id for this client and a list of MCP servers
  • The headers property includes the x-api-key for authentication
  • getTools fetches the tool definitions exposed by the Hashnode toolkit
8

Create the Mastra agent

typescript
const agent = new Agent({
    name: "hashnode-mastra-agent",
    instructions: "You are an AI agent with Hashnode tools via Composio.",
    model: "openai/gpt-5",
  });
What's happening:
  • Agent is the core Mastra agent
  • name is just an identifier for logging and debugging
  • instructions guide the agent to use tools instead of only answering in natural language
  • model uses openai("gpt-5") to configure the underlying LLM
9

Set up interactive chat interface

typescript
let messages: AiMessageType[] = [];

console.log("Chat started! Type 'exit' or 'quit' to end.\n");

const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout,
  prompt: "> ",
});

rl.prompt();

rl.on("line", async (userInput: string) => {
  const trimmedInput = userInput.trim();

  if (["exit", "quit", "bye"].includes(trimmedInput.toLowerCase())) {
    console.log("\nGoodbye!");
    rl.close();
    process.exit(0);
  }

  if (!trimmedInput) {
    rl.prompt();
    return;
  }

  messages.push({
    id: crypto.randomUUID(),
    role: "user",
    content: trimmedInput,
  });

  console.log("\nAgent is thinking...\n");

  try {
    const response = await agent.generate(messages, {
      toolsets: {
        hashnode: composioTools,
      },
      maxSteps: 8,
    });

    const { text } = response;

    if (text && text.trim().length > 0) {
      console.log(`Agent: ${text}\n`);
        messages.push({
          id: crypto.randomUUID(),
          role: "assistant",
          content: text,
        });
      }
    } catch (error) {
      console.error("\nError:", error);
    }

    rl.prompt();
  });

  rl.on("close", async () => {
    console.log("\nSession ended.");
    await mcpClient.disconnect();
    process.exit(0);
  });
}

main().catch((err) => {
  console.error("Fatal error:", err);
  process.exit(1);
});
What's happening:
  • messages keeps the full conversation history in Mastra's expected format
  • agent.generate runs the agent with conversation history and Hashnode toolsets
  • maxSteps limits how many tool calls the agent can take in a single run
  • onStepFinish is a hook that prints intermediate steps for debugging

Complete Code

Here's the complete code to get you started with Hashnode and Mastra AI:

typescript
import "dotenv/config";
import { openai } from "@ai-sdk/openai";
import { Agent } from "@mastra/core/agent";
import { MCPClient } from "@mastra/mcp";
import { Composio } from "@composio/core";
import * as readline from "readline";

import type { AiMessageType } from "@mastra/core/agent";

const openaiAPIKey = process.env.OPENAI_API_KEY;
const composioAPIKey = process.env.COMPOSIO_API_KEY;
const composioUserID = process.env.COMPOSIO_USER_ID;

if (!openaiAPIKey) throw new Error("OPENAI_API_KEY is not set");
if (!composioAPIKey) throw new Error("COMPOSIO_API_KEY is not set");
if (!composioUserID) throw new Error("COMPOSIO_USER_ID is not set");

const composio = new Composio({ apiKey: composioAPIKey as string });

async function main() {
  const session = await composio.create(composioUserID as string, {
    toolkits: ["hashnode"],
  });

  const composioMCPUrl = session.mcp.url;

  const mcpClient = new MCPClient({
    id: composioUserID as string,
    servers: {
      hashnode: {
        url: new URL(composioMCPUrl),
        requestInit: {
          headers: session.mcp.headers,
        },
      },
    },
    timeout: 30_000,
  });

  const composioTools = await mcpClient.getTools();

  const agent = new Agent({
    name: "hashnode-mastra-agent",
    instructions: "You are an AI agent with Hashnode tools via Composio.",
    model: "openai/gpt-5",
  });

  let messages: AiMessageType[] = [];

  const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
    prompt: "> ",
  });

  rl.prompt();

  rl.on("line", async (input: string) => {
    const trimmed = input.trim();
    if (["exit", "quit"].includes(trimmed.toLowerCase())) {
      rl.close();
      return;
    }

    messages.push({ id: crypto.randomUUID(), role: "user", content: trimmed });

    const { text } = await agent.generate(messages, {
      toolsets: { hashnode: composioTools },
      maxSteps: 8,
    });

    if (text) {
      console.log(`Agent: ${text}\n`);
      messages.push({ id: crypto.randomUUID(), role: "assistant", content: text });
    }

    rl.prompt();
  });

  rl.on("close", async () => {
    await mcpClient.disconnect();
    process.exit(0);
  });
}

main();

Conclusion

You've built a Mastra AI agent that can interact with Hashnode through Composio's Tool Router. You can extend this further by:
  • Adding other toolkits like Gmail, Slack, or GitHub
  • Building a web-based chat interface around this agent
  • Using multiple MCP endpoints to enable cross-app workflows
TOOLS

Supported Tools

Every Hashnode action and event your agent gets out of the box.

Hashnode Accept Publication Invite

Tool to accept a publication invitation.

Hashnode Add Comment

Add a comment to a Hashnode post.

Hashnode Add Content Block

Tool to add a content block to a Hashnode documentation project.

Hashnode Add Custom MDX Component

Tool to add a custom MDX component to a Hashnode documentation project.

Hashnode: Add Documentation Project Custom Domain

Tool to add a custom domain to a Hashnode documentation project.

Hashnode Add Reply

Tool to add a reply to an existing comment.

Hashnode: Check Custom Domain Availability

Tool to check if a custom domain is available for your Hashnode publication.

Hashnode: Check Subdomain Availability

Tool to check if a subdomain is available for a Hashnode publication.

Create Documentation API Reference

Tool to create a documentation API reference from an OpenAPI specification URL in a Hashnode project.

Create Documentation Link

Tool to create a link within a Hashnode documentation guide.

Hashnode: Create Documentation Project

Tool to create a new documentation project on Hashnode.

Hashnode Create Documentation Section

Tool to create a new documentation section in a Hashnode documentation guide.

Create Hashnode Documentation Guide

Tool to create a new documentation guide in a Hashnode documentation project.

Hashnode Delete Content Block

Tool to delete a content block from a Hashnode documentation project.

Hashnode Delete Custom MDX Component

Tool to delete a custom MDX component from a Hashnode documentation project.

Disable Documentation Project AI Search

Tool to disable AI search for a documentation project on Hashnode.

Hashnode: Fetch Invitations

Fetch pending publication invitations for a Hashnode publication.

Hashnode: Fetch Popular Tags

Tool to fetch a paginated list of popular tags.

Fetch Publication Posts

Tool to fetch a paginated list of posts from a publication.

Fetch Series Posts

Tool to fetch posts from a series within a publication.

Fetch Single Article

Tool to fetch a single article by slug from a publication.

Fetch Stories Feed

Fetch a paginated feed of stories from Hashnode.

Hashnode: Fetch User Details

Tool to fetch detailed user profile information by username.

Hashnode: Follow Tags

Follow specified tags to customize your content feed on Hashnode.

Generate Documentation Project Preview Authorization Token

Tool to generate a JWT authorization token for previewing a documentation project.

Get Documentation Project

Tool to fetch details of a Docs by Hashnode project by ID or hostname.

Get Post by ID

Tool to retrieve a published post by ID from Hashnode.

Get Publication by ID or Host

Tool to fetch publication details by ID or hostname.

Hashnode: Get Tag Details

Tool to fetch detailed information about a tag by its slug.

Hashnode Like Comment

Tool to like a comment on Hashnode.

Hashnode Like Post

Tool to like a post on Hashnode.

Hashnode: Like Reply

Tool to like a reply on Hashnode.

Hashnode: List Publications

Tool to list all publications of the authenticated user.

Hashnode: List Top Commenters

Tool to fetch users who have most actively participated in discussions by commenting in the last 7 days.

Hashnode: Map Documentation Project WWW Redirect

Tool to configure WWW redirect for a documentation project's custom domain.

Hashnode: Get Current User

Retrieves profile details of the currently authenticated Hashnode user.

Move Documentation Sidebar Item

Tool to reorder documentation sidebar items within a Hashnode guide.

Publish Documentation API Reference

Tool to publish a documentation API reference in a Hashnode documentation project.

Hashnode Publish Post

Tool to publish a new blog post to a Hashnode publication.

Hashnode Remove Comment

Tool to remove a comment from a Hashnode post.

Hashnode Remove Documentation Guide

Tool to remove a documentation guide from a Hashnode project.

Remove Documentation Project

Tool to remove a documentation project from Hashnode.

Hashnode Remove Documentation Project Custom Domain

Tool to remove a custom domain from a Hashnode documentation project.

Remove Documentation Sidebar Item

Tool to remove a sidebar item from a documentation guide on Hashnode.

Hashnode Remove Post

Tool to remove (delete) a post from Hashnode.

Hashnode Remove Reply

Tool to remove a reply from a comment.

Hashnode Rename Documentation Guide

Tool to rename a documentation guide in a Hashnode project.

Rename Documentation Sidebar Item

Tool to rename a documentation sidebar item within a Hashnode guide.

Hashnode Restore Post

Tool to restore a previously deleted Hashnode post.

Save Documentation Page Draft Content

Tool to save draft content for a documentation page in Hashnode.

Search Posts of Publication

Tool to search and retrieve posts from a specific publication based on a search query.

Subscribe to Newsletter

Tool to subscribe an email address to a Hashnode publication's newsletter.

Hashnode: Toggle Follow User

Tool to toggle follow status for a Hashnode user.

Hashnode: Unfollow Tags

Unfollow specified tags to customize your content feed on Hashnode.

Unsubscribe from Newsletter

Tool to unsubscribe an email address from a Hashnode publication's newsletter.

Hashnode Update Comment

Tool to update an existing comment on a Hashnode post.

Hashnode Update Content Block

Tool to update a content block in a Hashnode documentation project.

Update Documentation Appearance

Tool to update the appearance settings of a Hashnode documentation project.

Update Documentation General Settings

Tool to update general settings of a Hashnode documentation project.

Update Hashnode Documentation Guide

Tool to update an existing documentation guide in a Hashnode project.

Hashnode: Update Documentation Integrations

Tool to update third-party integrations for a Docs by Hashnode project.

Update Documentation Link

Tool to update an existing link within a Hashnode documentation guide.

Hashnode: Update Documentation Project Subdomain

Tool to update the subdomain of a Hashnode documentation project.

Hashnode Update Documentation Section

Tool to update a section in a Hashnode documentation guide.

Hashnode Update Post

Tool to update an existing Hashnode post via the updatePost mutation.

Hashnode Update Reply

Tool to update a reply.

Hashnode Verify Documentation Project Custom Domain

Tool to verify a custom domain for a Hashnode documentation project.

FAQ

Frequently asked questions

With a standalone Hashnode MCP server, the agents and LLMs can only access a fixed set of Hashnode tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Hashnode and many other apps based on the task at hand, all through a single MCP endpoint.

Yes, you can. Mastra AI fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Hashnode tools.

Yes, absolutely. You can configure which Hashnode scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Hashnode data and credentials are handled as safely as possible.

Start with Hashnode.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Hashnode tool your agent needs.Free to start.

Start building