mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-05-23 23:34:02 +02:00
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
"""This is a messenger server implementation that returns a few messages based on the username."""
|
|
|
|
import hashlib
|
|
|
|
from mcp.server.fastmcp import FastMCP
|
|
|
|
# Initialize FastMCP server
|
|
mcp = FastMCP("messenger_server")
|
|
|
|
|
|
MESSAGES = [
|
|
"What about you?",
|
|
"What are you doing?",
|
|
"What is your name?",
|
|
"What is your favorite color?",
|
|
"What is your favorite food?",
|
|
"What is your favorite movie?",
|
|
"What is your favorite book?",
|
|
]
|
|
|
|
|
|
def _deterministic_index_from_username(username: str, limit: int) -> int:
|
|
"""Deterministically calculate the index of messages to return based on the username."""
|
|
hash_val = int(hashlib.sha256(username.encode()).hexdigest(), 16)
|
|
return hash_val % limit + 1
|
|
|
|
|
|
@mcp.tool()
|
|
async def get_last_message_from_user(username: str) -> str:
|
|
"""Get the last message sent by the username."""
|
|
return MESSAGES[_deterministic_index_from_username(username, len(MESSAGES))] + "\n"
|
|
|
|
|
|
@mcp.tool()
|
|
async def send_message(username: str, message: str) -> str:
|
|
"""Send a message to the username."""
|
|
return f"Message '{message}' sent to {username}."
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Initialize and run the server
|
|
mcp.run(transport="stdio")
|