I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

McProto
Ejecute o encadene fácilmente los servidores MCP junto con su lógica normal de Ruby.
3 years
Works with Finder
1
Github Watches
1
Github Forks
2
Github Stars
MCProto
Installation
TODO: Launch - Gem hasn't been made public
Usage
MCProto is a Ruby gem that allows you to chain MCP servers and auxiliary ruby code together for custom solutions.
After installing the gem, create an initializer, config/initializers/mcproto.rb
and create your servers:
# Create any number of servers by passing in server classes, host, and port.
beta_invite_server = MCProto::Server.new(
InviteUserToBeta,
host: 'localhost',
port: 3000
)
# Perform logic you may need before starting the servers.
beta_invite_server.start!
Ex: An MCP server can be run on its own
# servers/tag_user.rb
class TriggerByEmail
include MCProto
delegate :email, to: :context
resource do
# TODO
# define your resource (ex: db table)
{ name: 'email', description: 'Trigger by email' }
end
tool do
# TODO
description "Run when use email is mentioned."
end
call do
run unless email_exists?(email)
end
private
def email_exists?(email)
#...
end
end
Or, chain them together:
# servers/invite_user_to_beta.rb
class InviteUserToBeta
include MCProto::Chain
chain [ TriggerByEmail, SendEmailInvite ]
end
Each server can access the context
object and read data from previous servers, or add their own data to the context.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the Mcproto project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
相关推荐
Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.
Confidential guide on numerology and astrology, based of GG33 Public information
A geek-themed horoscope generator blending Bitcoin prices, tech jargon, and astrological whimsy.
Converts Figma frames into front-end code for various mobile frameworks.
Advanced software engineer GPT that excels through nailing the basics.
Descubra la colección más completa y actualizada de servidores MCP en el mercado. Este repositorio sirve como un centro centralizado, que ofrece un extenso catálogo de servidores MCP de código abierto y propietarios, completos con características, enlaces de documentación y colaboradores.
Manipulación basada en Micrypthon I2C del expansor GPIO de la serie MCP, derivada de AdaFruit_MCP230xx
Una puerta de enlace de API unificada para integrar múltiples API de explorador de blockchain similar a Esterscan con soporte de protocolo de contexto modelo (MCP) para asistentes de IA.
Espejo dehttps: //github.com/agentience/practices_mcp_server
Espejo de https: //github.com/bitrefill/bitrefill-mcp-server
Reviews

user_sCQG2lxL
I've been using mcproto for some time now and it has significantly improved my project workflow. Created by the talented wassson, this tool is user-friendly and efficient. The seamless integration and comprehensive features make it a must-have for any developer working with Minecraft protocols. Highly recommended!