Art Blog

v1.0.0

Creative arts blog with MDX content and tag system

blogartcreativemdx

Server Information

Server ID
artblog
Endpoint URL
https://artblog.bookchaowalit.com
Author
bookchaowalit
Available Tools
3 tools

About

A Next.js blog exploring knowledge of various art styles, design techniques, and creative fields, built with MDX and hosted on Vercel. ## Features - **Next.js App Router** with TypeScript - **MDX** for writing posts with rich content - **Tailwind CSS** for styling - **Responsive images** and SEO optimization - **Tag system** and search functionality - **Vercel deployment** ready

Available Tools

artblog_get_art_posts

Fetch art blog posts with optional filtering

Input Schema
{
  "type": "object",
  "properties": {
    "tag": {
      "type": "string"
    },
    "limit": {
      "type": "number"
    }
  }
}

artblog_search_art_content

Search art blog content by keywords

Input Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string"
    }
  }
}

artblog_get_art_post

Get a specific art blog post by slug

Input Schema
{
  "type": "object",
  "properties": {
    "slug": {
      "type": "string"
    }
  }
}

Usage Example

Connect to this MCP server using the Model Context Protocol:

{
  "mcpServers": {
    "artblog": {
      "command": "node",
      "args": ["path/to/server.js"],
      "env": {
        "SERVER_URL": "https://artblog.bookchaowalit.com"
      }
    }
  }
}