Skip to main content
Glama
tehrimaly

Joke MCP Server

by tehrimaly

šŸŽ­ Joke MCP Server

A simple yet powerful Model Context Protocol (MCP) server that brings humor to AI interactions. This MCP exposes random joke generation as tools that can be seamlessly integrated with Claude and other MCP-compatible clients.

✨ Features

  • get_random_joke - Get a random joke with setup and punchline

  • count_jokes - Get the total number of available jokes in the database

  • Simple & Lightweight - Minimal dependencies, fast execution

  • Easy Integration - Works with Claude Desktop and other MCP clients

  • Well-Documented - Clear schemas and usage examples

Related MCP server: Jokes MCP Server

šŸš€ Quick Start

Prerequisites

  • Python 3.11 or higher

  • pip package manager

Installation

# Clone the repository
git clone https://github.com/tehrimaly/mcp-joke.git
cd mcp-joke

# Create virtual environment
python -m venv venv

# Activate virtual environment
# On Windows:
venv\Scripts\Activate.ps1
# On macOS/Linux:
source venv/bin/activate

# Install dependencies
pip install -r requirements.txt

Running the Server

python joke-mcp.py

You should see:

šŸš€ Joke MCP Server starting...

šŸ“– Usage

With Claude Desktop

Add this to your Claude Desktop configuration file:

macOS/Linux: ~/.config/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "joke-mcp": {
      "command": "python",
      "args": ["/path/to/joke-mcp.py"]
    }
  }
}

Then restart Claude Desktop and you can ask Claude to tell jokes!

API Reference

get_random_joke

Returns a random joke with setup and punchline.

Input: None

Output:

Setup: Why don't scientists trust atoms?

Punchline: Because they make up everything!

count_jokes

Returns the total number of jokes available in the database.

Input: None

Output:

Total jokes: 5

šŸ—ļø Project Structure

mcp-joke/
ā”œā”€ā”€ joke-mcp.py          # Main MCP server implementation
ā”œā”€ā”€ requirements.txt      # Python dependencies
ā”œā”€ā”€ README.md            # This file
ā”œā”€ā”€ .gitignore           # Git configuration
└── LICENSE              # MIT License

šŸ”§ Technical Details

Built With

  • Python 3.11+ - Programming language

  • MCP SDK v1.0.0 - Model Context Protocol library

  • Asyncio - Asynchronous programming

How It Works

The Joke MCP Server:

  1. Starts an MCP server listening on stdio

  2. Registers available tools with their schemas

  3. Handles incoming requests from MCP clients

  4. Returns formatted responses with joke data

# Tool registration example
@server.list_tools()
async def list_tools():
    return [
        Tool(
            name="get_random_joke",
            description="Get a random joke",
            inputSchema={...}
        )
    ]

# Tool execution
@server.call_tool()
async def call_tool(name: str, arguments: dict):
    if name == "get_random_joke":
        # Return random joke

šŸ“¦ Dependencies

  • mcp==1.0.0 - Model Context Protocol SDK

See requirements.txt for complete dependency list.

šŸŽÆ Current Features

āœ… 5 built-in jokes āœ… Async/await support āœ… Clean error handling āœ… Simple schema-based tool definition āœ… Stdout logging

šŸ”® Future Enhancements

  • Add joke categories (dad jokes, puns, dark humor)

  • Implement difficulty levels

  • Add joke ratings/feedback

  • Connect to external joke APIs

  • Persist user favorites

  • Multi-language support

  • Web UI for joke management

šŸ¤ Contributing

Feel free to:

  • Add more jokes to the database

  • Improve documentation

  • Report bugs

  • Suggest new features

šŸ“ License

This project is licensed under the MIT License - see LICENSE file for details.

šŸ’” Example Use Cases

  1. AI Assistant Integration - Add humor to Claude interactions

  2. Slack Bot - Integrate jokes into team communication

  3. Learning Tool - Understand MCP implementation basics

  4. Template - Use as a starting point for your own MCP servers

šŸ› Troubleshooting

Issue: Module not found error

pip install -r requirements.txt

Issue: Port already in use The server uses stdio, not a port. This shouldn't occur.

Issue: Server won't start

  • Check Python version (3.11+)

  • Verify all dependencies installed

  • Check for syntax errors

šŸ“§ Support

For issues, questions, or suggestions, please open a GitHub issue.

F
license - not found
Not graded
quality - not tested
C
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that provides jokes on demand, allowing users to request different types of jokes (Chuck Norris, Dad jokes, etc.) through natural language in both GitHub Copilot and Microsoft Copilot Studio.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Fetches jokes from multiple APIs including Chuck Norris, Dad jokes, and Yo Mama jokes, providing humor-focused content through standardized MCP tools.
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server for AI dialogue using various LLM models via AceDataCloud

  • Manage feature requests, votes, roadmaps, and changelogs from any MCP client.

  • Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tehrimaly/mcp-guide'

If you have feedback or need assistance with the MCP directory API, please join our Discord server