# Model Context Protocol Server for Smithery

Provide a simple and effective way to demonstrate Model Context Protocol functionality. Easily deployable on Smithery, it allows you to echo text and retrieve the current time in various formats. Enh…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add AlexKissiJr/unreal-mcp-server

# Browse available tools
npx -y @smithery/cli@latest tool list AlexKissiJr/unreal-mcp-server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get AlexKissiJr/unreal-mcp-server create_or_update_file

# Call a tool
npx -y @smithery/cli@latest tool call AlexKissiJr/unreal-mcp-server create_or_update_file '{}'
```

## Tools (17)

- `create_or_update_file` — Create or update a single file in a GitHub repository
- `search_repositories` — Search for GitHub repositories
- `create_repository` — Create a new GitHub repository in your account
- `get_file_contents` — Get the contents of a file or directory from a GitHub repository
- `push_files` — Push multiple files to a GitHub repository in a single commit
- `create_issue` — Create a new issue in a GitHub repository
- `create_pull_request` — Create a new pull request in a GitHub repository
- `fork_repository` — Fork a GitHub repository to your account or specified organization
- `create_branch` — Create a new branch in a GitHub repository
- `list_commits` — Get list of commits of a branch in a GitHub repository
- `list_issues` — List issues in a GitHub repository with filtering options
- `update_issue` — Update an existing issue in a GitHub repository
- `add_issue_comment` — Add a comment to an existing issue
- `search_code` — Search for code across GitHub repositories
- `search_issues` — Search for issues and pull requests across GitHub repositories
- `search_users` — Search for users on GitHub
- `get_issue` — Get details of a specific issue in a GitHub repository.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get AlexKissiJr/unreal-mcp-server <tool-name>
```

---

Source: https://github.com/AlexKissiJr/unreal-mcp-server
