https://github.com/packit/hrungnir
https://github.com/packit/hrungnir
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/packit/hrungnir
- Owner: packit
- Created: 2025-07-31T14:08:05.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-07-31T17:52:23.000Z (10 months ago)
- Last Synced: 2025-08-04T16:27:54.153Z (10 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚧 Hrungnir - work in progress 🚧
## Development Setup
Install uv: `dnf install uv` or follow the [installation guide](https://docs.astral.sh/uv/getting-started/installation)
```bash
uv sync
source .venv/bin/activate
```
## Linting, Formatting, Testing, and Type Checking
```bash
# Linting and formatting
ruff format
ruff check
# Testing and type checking
pytest
basedpyright
```
*Note: Prepend `uv run` to commands if not in the virtual environment.*
## Running the MCP Server
To run the server locally:
```bash
# Inside virtual environment
hrungnir
# Without setting virtual environment
uvx .
# With MCP inspector GUI
npx @modelcontextprotocol/inspector uvx .
```