MCP.so
Sign In

Izawa MCP Server

@i-am-ethan

About Izawa MCP Server

No overview available yet

Basic information

Category

Other

Runtime

node

Transports

stdio

Publisher

i-am-ethan

Config

No standard config provided

This server doesn't expose a parseable MCP config block in its README. See the repository for install instructions.

Repository

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Izawa MCP Server?

Izawa MCP Server is a Model Context Protocol (MCP) server built with TypeScript and Express. It provides profile information and blog articles for use with MCP-compatible clients.

How to use Izawa MCP Server?

Clone the repository, install dependencies with npm install, then run npm run dev for development (listens on http://localhost:3000). For production, build with npm run build and start with npm start. Access the metadata endpoint GET /.well-known/model-context-protocol.json or the context data endpoint POST /mcp (e.g., with {"context_id": "profile"} or {"context_id": "blog_post_content", "params": {"post_id": "post-1"}}).

Key features of Izawa MCP Server

  • Provides profile information
  • Provides a list of blog articles
  • Provides the content of a specific blog article

Use cases of Izawa MCP Server

  • Integrate a personal profile into MCP-powered tools
  • Retrieve a blog post index for display in an AI assistant
  • Fetch the full text of a particular blog post on demand

FAQ from Izawa MCP Server

What are the system requirements for Izawa MCP Server?

Node.js v20.18.0 or higher, and npm or yarn.

How can I customize the profile or blog data?

Edit the userProfile object in src/server.ts for profile information. For blog articles, implement the getBlogPosts and getBlogPostContent functions to use actual data sources.

What endpoints does Izawa MCP Server expose?

A metadata endpoint at GET /.well-known/model-context-protocol.json and a context data endpoint at POST /mcp.

How do I retrieve a specific blog post?

Send a POST request to /mcp with context_id set to "blog_post_content" and include the post_id in the params object, e.g., {"context_id": "blog_post_content", "params": {"post_id": "post-1"}}.

How do I run Izawa MCP Server in production?

Build the TypeScript code with npm run build, then start the server with npm start.

Comments

More Other MCP servers