MCP Catalogs
HomeGEmojiSharp screenshot

GEmojiSharp

by hlaueriksson·156·Score 44

GEmojiSharp.McpServer provides GitHub emoji tools for C# applications via the MCP protocol.

developer-toolscommunication
9
Forks
2
Open issues
3 mo ago
Last commit
2d ago
Indexed

Overview

GEmojiSharp.McpServer is part of a larger C# library ecosystem for GitHub emojis. It exposes emoji lookup, conversion between aliases and raw characters, and text emojification/demojification as MCP tools. The server integrates with the broader GEmojiSharp library which provides consistent emoji handling across different .NET platforms including ASP.NET Core, Blazor, and CLI tools.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Convert between emoji aliases and raw characters in C# applications
you:Emojify or demojify text content through MCP tool calls
you:Search for emojis by description, category, alias or tags
you:What GitHub emojis are included?
you:Can I use this in non-C# applications?

When to choose this

Choose this MCP server if you need GitHub emoji functionality in .NET applications or want to provide emoji lookup capabilities to AI systems.

When NOT to choose this

Avoid this if you need emoji functionality for platforms other than GitHub, as it's specifically designed for GitHub's emoji set.

Tools this server exposes

5 tools extracted from the README
  • raw_emoji

    Get raw emojis from emoji aliases or descriptions

  • get_emoji_alias

    Get emoji aliases from raw emojis or descriptions

  • emojify

    Replace emoji aliases in text with raw emojis

  • demojify

    Replace raw emojis in text with emoji aliases

  • export_emoji_data

    Export emoji data to json, toml, xml, or yaml format

Comparable tools

emoji-mcpgithub-mcp

Installation

Install the GEmojiSharp.McpServer NuGet package:

dotnet add package GEmojiSharp.McpServer

For Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "gemoji": {
      "command": "dotnet",
      "args": ["run", "--project", "path/to/your/GEmojiSharp.McpServer/project.csproj"],
      "env": {}
    }
  }
}

FAQ

What GitHub emojis are included?
It includes all valid emojis in GitHub Flavored Markdown, which is the intersection of the emoji.json database and GitHub's API available emojis.
Can I use this in non-C# applications?
While the server is implemented in C#, it exposes MCP tools that can be used by any MCP-compatible client regardless of programming language.

Compare GEmojiSharp with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.