Created
March 12, 2025 20:23
-
-
Save mberman84/2faeddf57113826d7440bfadbe5ce6e5 to your computer and use it in GitHub Desktop.
count-r MCP server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from mcp.server.fastmcp import FastMCP | |
import time | |
import signal | |
import sys | |
# Handle SIGINT (Ctrl+C) gracefully | |
def signal_handler(sig, frame): | |
print("Shutting down server gracefully...") | |
sys.exit(0) | |
signal.signal(signal.SIGINT, signal_handler) | |
# Create an MCP server with increased timeout | |
mcp = FastMCP( | |
name="count-r", | |
host="127.0.0.1", | |
port=5000, | |
# Add this to make the server more resilient | |
timeout=30 # Increase timeout to 30 seconds | |
) | |
# Define our tool | |
@mcp.tool() | |
def count_r(word: str) -> int: | |
"""Count the number of 'r' letters in a given word.""" | |
try: | |
# Add robust error handling | |
if not isinstance(word, str): | |
return 0 | |
return word.lower().count("r") | |
except Exception as e: | |
# Return 0 on any error | |
return 0 | |
if __name__ == "__main__": | |
try: | |
print("Starting MCP server 'count-r' on 127.0.0.1:5000") | |
# Use this approach to keep the server running | |
mcp.run() | |
except Exception as e: | |
print(f"Error: {e}") | |
# Sleep before exiting to give time for error logs | |
time.sleep(5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment