1. Conduid
  2. Developer Tools
  3. Emmett MCP
MCP server · Developer Tools

Emmett MCP

MCP extension for Emmett framework

Unclaimed BSD-3-Clause last commit a year ago mcpdevtoolsemmett
49Fair

Scored yesterday · breakdown

About Emmett MCP

Emmett MCP is an MCP server published by gi0baro in the Developer Tools category: mCP extension for Emmett framework. It has been installed 0 times through Conduid.

The repository has 4 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 emmett-mcp

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 Emmett MCP

Powered by Claude · Grounded in docs

I know everything about Emmett MCP. 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.1.0Emmett-MCP 0.1.0 · 13 Apr 2025First public release

README

Emmett-MCP

An extension for Emmett and Emmett55 to build MCP servers.

Note: Emmett-MCP only supports the SSE transport.

In a nutshell

from emmett55 import App
from emmett_mcp import MCP, MCPModule

app = App(__name__)
mcp = app.use_extension(MCP)

mcp_server: MCPModule = app.mcp_module(__name__, "mcp", url_prefix="/mcp")

@mcp_server.resource("echo://{message}")
def echo_resource(message: str) -> str:
    return f"Resource echo: {message}"

@mcp_server.tool()
def echo_tool(message: str) -> str:
    return f"Tool echo: {message}"

@mcp_server.prompt()
def echo_prompt(message: str) -> str:
    return f"Please process this message: {message}"

License

Emmett-MCP is released under BSD license. Check the LICENSE file for more details.

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

Questions

About Emmett MCP

How do I install Emmett MCP?

Run npx emmett-mcp, 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 Emmett MCP safe to use with an AI agent?

Its trust score is 49 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 Emmett MCP 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.