MCP.so
登录

Izawa MCP Server

@i-am-ethan

关于 Izawa MCP Server

暂无概览

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

i-am-ethan

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

其他 分类下的更多 MCP 服务器