How to integrate Hashnode MCP with Pydantic AI

This guide walks you through connecting Hashnode to Pydantic 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 Pydantic 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 Pydantic 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 Pydantic 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:
  • How to set up your Composio API key and User ID
  • How to create a Composio Tool Router session for Hashnode
  • How to attach an MCP Server to a Pydantic AI agent
  • How to stream responses and maintain chat history
  • How to build a simple REPL-style chat interface to test your Hashnode workflows

What is Pydantic AI?

Pydantic AI is a Python framework for building AI agents with strong typing and validation. It leverages Pydantic's data validation capabilities to create robust, type-safe AI applications.

Key features include:

  • Type Safety: Built on Pydantic for automatic data validation
  • MCP Support: Native support for Model Context Protocol servers
  • Streaming: Built-in support for streaming responses
  • Async First: Designed for async/await patterns

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:
  • Python 3.9 or higher
  • A Composio account with an active API key
  • Basic familiarity with Python and async programming
2

Getting API Keys for OpenAI and Composio

OpenAI API Key
  • Go to the OpenAI dashboard and create an API key. You'll need credits to use the models, or you can connect to another model provider.
  • Keep the API key safe.
Composio API Key
  • Log in to the Composio dashboard.
  • Navigate to your API settings and generate a new API key.
  • Store this key securely as you'll need it for authentication.
3

Install dependencies

bash
pip install composio pydantic-ai python-dotenv

Install the required libraries.

What's happening:

  • composio connects your agent to external SaaS tools like Hashnode
  • pydantic-ai lets you create structured AI agents with tool support
  • python-dotenv loads your environment variables securely from a .env file
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
USER_ID=your_user_id_here
OPENAI_API_KEY=your_openai_api_key

Create a .env file in your project root.

What's happening:

  • COMPOSIO_API_KEY authenticates your agent to Composio's API
  • USER_ID associates your session with your account for secure tool access
  • OPENAI_API_KEY to access OpenAI LLMs
5

Import dependencies

python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio
from pydantic_ai import Agent
from pydantic_ai.mcp import MCPServerStreamableHTTP

load_dotenv()
What's happening:
  • We load environment variables and import required modules
  • Composio manages connections to Hashnode
  • MCPServerStreamableHTTP connects to the Hashnode MCP server endpoint
  • Agent from Pydantic AI lets you define and run the AI assistant
6

Create a Tool Router Session

python
async def main():
    api_key = os.getenv("COMPOSIO_API_KEY")
    user_id = os.getenv("USER_ID")
    if not api_key or not user_id:
        raise RuntimeError("Set COMPOSIO_API_KEY and USER_ID in your environment")

    # Create a Composio Tool Router session for Hashnode
    composio = Composio(api_key=api_key)
    session = composio.create(
        user_id=user_id,
        toolkits=["hashnode"],
    )
    url = session.mcp.url
    if not url:
        raise ValueError("Composio session did not return an MCP URL")
What's happening:
  • We're creating a Tool Router session that gives your agent access to Hashnode tools
  • The create method takes the user ID and specifies which toolkits should be available
  • The returned session.mcp.url is the MCP server URL that your agent will use
7

Initialize the Pydantic AI Agent

python
# Attach the MCP server to a Pydantic AI Agent
hashnode_mcp = MCPServerStreamableHTTP(url, headers={"x-api-key": COMPOSIO_API_KEY})
agent = Agent(
    "openai:gpt-5",
    toolsets=[hashnode_mcp],
    instructions=(
        "You are a Hashnode assistant. Use Hashnode tools to help users "
        "with their requests. Ask clarifying questions when needed."
    ),
)
What's happening:
  • The MCP client connects to the Hashnode endpoint
  • The agent uses GPT-5 to interpret user commands and perform Hashnode operations
  • The instructions field defines the agent's role and behavior
8

Build the chat interface

python
# Simple REPL with message history
history = []
print("Chat started! Type 'exit' or 'quit' to end.\n")
print("Try asking the agent to help you with Hashnode.\n")

while True:
    user_input = input("You: ").strip()
    if user_input.lower() in {"exit", "quit", "bye"}:
        print("\nGoodbye!")
        break
    if not user_input:
        continue

    print("\nAgent is thinking...\n", flush=True)

    async with agent.run_stream(user_input, message_history=history) as stream_result:
        collected_text = ""
        async for chunk in stream_result.stream_output():
            text_piece = None
            if isinstance(chunk, str):
                text_piece = chunk
            elif hasattr(chunk, "delta") and isinstance(chunk.delta, str):
                text_piece = chunk.delta
            elif hasattr(chunk, "text"):
                text_piece = chunk.text
            if text_piece:
                collected_text += text_piece
        result = stream_result

    print(f"Agent: {collected_text}\n")
    history = result.all_messages()
What's happening:
  • The agent reads input from the terminal and streams its response
  • Hashnode API calls happen automatically under the hood
  • The model keeps conversation history to maintain context across turns
9

Run the application

python
if __name__ == "__main__":
    asyncio.run(main())
What's happening:
  • The asyncio loop launches the agent and keeps it running until you exit

Complete Code

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

python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio
from pydantic_ai import Agent
from pydantic_ai.mcp import MCPServerStreamableHTTP

load_dotenv()

async def main():
    api_key = os.getenv("COMPOSIO_API_KEY")
    user_id = os.getenv("USER_ID")
    if not api_key or not user_id:
        raise RuntimeError("Set COMPOSIO_API_KEY and USER_ID in your environment")

    # Create a Composio Tool Router session for Hashnode
    composio = Composio(api_key=api_key)
    session = composio.create(
        user_id=user_id,
        toolkits=["hashnode"],
    )
    url = session.mcp.url
    if not url:
        raise ValueError("Composio session did not return an MCP URL")

    # Attach the MCP server to a Pydantic AI Agent
    hashnode_mcp = MCPServerStreamableHTTP(url, headers={"x-api-key": COMPOSIO_API_KEY})
    agent = Agent(
        "openai:gpt-5",
        toolsets=[hashnode_mcp],
        instructions=(
            "You are a Hashnode assistant. Use Hashnode tools to help users "
            "with their requests. Ask clarifying questions when needed."
        ),
    )

    # Simple REPL with message history
    history = []
    print("Chat started! Type 'exit' or 'quit' to end.\n")
    print("Try asking the agent to help you with Hashnode.\n")

    while True:
        user_input = input("You: ").strip()
        if user_input.lower() in {"exit", "quit", "bye"}:
            print("\nGoodbye!")
            break
        if not user_input:
            continue

        print("\nAgent is thinking...\n", flush=True)

        async with agent.run_stream(user_input, message_history=history) as stream_result:
            collected_text = ""
            async for chunk in stream_result.stream_output():
                text_piece = None
                if isinstance(chunk, str):
                    text_piece = chunk
                elif hasattr(chunk, "delta") and isinstance(chunk.delta, str):
                    text_piece = chunk.delta
                elif hasattr(chunk, "text"):
                    text_piece = chunk.text
                if text_piece:
                    collected_text += text_piece
            result = stream_result

        print(f"Agent: {collected_text}\n")
        history = result.all_messages()

if __name__ == "__main__":
    asyncio.run(main())

Conclusion

You've built a Pydantic AI agent that can interact with Hashnode through Composio's Tool Router. With this setup, your agent can perform real Hashnode actions through natural language. You can extend this further by:
  • Adding other toolkits like Gmail, HubSpot, or Salesforce
  • Building a web-based chat interface around this agent
  • Using multiple MCP endpoints to enable cross-app workflows (for example, Gmail + Hashnode for workflow automation)
This architecture makes your AI agent "agent-native", able to securely use APIs in a unified, composable way without custom integrations.
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. Pydantic 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