1. Conduid
  2. Developer Tools
  3. Misskey MCP Server
MCP server · Developer Tools

Misskey MCP Server

unofficial misskey mcp server

Unclaimed last commit a year ago devtoolsmcpmisskeymcp-server
46Fair

Scored yesterday · breakdown

About Misskey MCP Server

Misskey MCP Server is an MCP server published by ganyariya in the Developer Tools category: unofficial misskey mcp server. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx misskey-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Misskey MCP Server

Powered by Claude · Grounded in docs

I know everything about Misskey MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.0.2v0.0.2 · 31 May 2025Changelog f9456a5 fix 1592f31 Merge pull request #18 from ganyariya/feature/fix-run-go-release-on-push 8ae8672 fix: goreleaser settings f1ae02e Merge pull request #17 from ganyariya/feat/github-actions-ci 560fe2f fix: jules の内容を修正する…
v0.0.1v0.0.1 · 20 Apr 2025Initial release of an unofficial misskey mcp server features post a note

README

GitHub stars GitHub forks GitHub issues GitHub pull requests GitHub license GitHub contributors GitHub last commit GoDoc Go Report Card

misskey-mcp-server

misskey-mcp-server is an unofficial MCP (Model Context Protocol) server for Misskey.
Currently, it only has the bare minimum functionality: posting notes.
So, I would appreciate contributions (PRs) from everyone!

Features

MCP Tools Implementation Status

MCP Tool Name Misskey API Endpoint Status
post_misskey_note /notes/create
get_misskey_note /notes/show
get_misskey_timeline /notes/timeline
get_misskey_user /users/show
get_misskey_user_notes /users/notes
get_misskey_user_following /users/following
get_misskey_user_followers /users/followers
get_misskey_notifications /i/notifications
get_misskey_mentions /notes/mentions
get_misskey_antenna /antennas/show
get_misskey_antenna_notes /antennas/notes
get_misskey_channel /channels/show
get_misskey_channel_notes /channels/notes
get_misskey_gallery /gallery/posts/show
get_misskey_gallery_posts /gallery/posts
get_misskey_page /pages/show
get_misskey_drive_files /drive/files
post_misskey_reaction /notes/reactions/create
delete_misskey_reaction /notes/reactions/delete
post_misskey_follow /following/create
delete_misskey_follow /following/delete
post_misskey_renote /notes/create (renote)
post_misskey_reply /notes/create (reply)
get_misskey_search /notes/search
get_misskey_search_by_tag /notes/search-by-tag
get_misskey_hashtags /hashtags/trend
get_misskey_emoji /emojis
get_misskey_meta /meta
get_misskey_instance /federation/instances
get_misskey_stats /stats

Usage

Install

From go install

GOBIN="$HOME/go/bin" go install github.com/ganyariya/misskey-mcp-server/cmd/misskey-mcp-server@latest

Build your own

git clone https://github.com/ganyariya/misskey-mcp-server
cd misskey-mcp-server
go build -o misskey-mcp-server cmd/misskey-mcp-server/main.go

Setup

Setup your mcp.json as below.

{
  "mcpServers": {
    "misskey-mcp-server": {
      "command": "misskey-mcp-server",
      "args": [],
      "env": {
        // https://misskey-hub.net/ja/docs/for-developers/api/token/
        "MISSKEY_API_TOKEN": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
        // http or https
        "MISSKEY_PROTOCOL": "https",
        // your misskey server's domain
        "MISSKEY_DOMAIN": "misskey.io", 
        "MISSKEY_PATH": ""
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Thanks to reference

get_misskey_user_notes

Retrieves notes for a specific Misskey user.

Arguments:

  • userId (string, required): The ID of the user whose notes you want to retrieve.

Example Request:

{
  "userId": "some_user_id"
}

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Misskey MCP Server

How do I install Misskey MCP Server?

Run npx misskey-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Misskey MCP Server safe to use with an AI agent?

Its trust score is 46 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Misskey MCP Server still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.