
GEmojiSharp
by hlaueriksson·★ 156·Score 44
GEmojiSharp.McpServer provides GitHub emoji tools for C# applications via the MCP protocol.
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:
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 READMEraw_emojiGet raw emojis from emoji aliases or descriptions
get_emoji_aliasGet emoji aliases from raw emojis or descriptions
emojifyReplace emoji aliases in text with raw emojis
demojifyReplace raw emojis in text with emoji aliases
export_emoji_dataExport emoji data to json, toml, xml, or yaml format
Comparable tools
Installation
Install the GEmojiSharp.McpServer NuGet package:
dotnet add package GEmojiSharp.McpServerFor 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
Last updated · Auto-generated from public README + GitHub signals.