main - fix: Change repository name to gr-mcp

This commit is contained in:
Yoel Bassin 2025-05-05 20:12:24 +03:00
parent 2dc21b5363
commit 3df548e684

View File

@ -1,4 +1,4 @@
# GNURadio MCP Server # GR-MCP: A gnuradio MCP Server
[![Python Version](https://img.shields.io/badge/python-3.13%2B-blue.svg)](https://www.python.org/downloads/release/python-3130/) [![Python Version](https://img.shields.io/badge/python-3.13%2B-blue.svg)](https://www.python.org/downloads/release/python-3130/)
@ -31,14 +31,14 @@
### Usage ### Usage
1. **Clone the repository** 1. **Clone the repository**
```bash ```bash
git clone https://github.com/yoelbassin/gnuradioMCP git clone https://github.com/yoelbassin/gr-mcp
``` ```
2. [**Install GNURadio**](https://wiki.gnuradio.org/index.php/InstallingGR) 2. [**Install GNURadio**](https://wiki.gnuradio.org/index.php/InstallingGR)
3. **Set up a UV environment** 3. **Set up a UV environment**
```bash ```bash
cd gnuradioMCP cd gr-mcp
uv venv --system-site-packages uv venv --system-site-packages
``` ```
> The `--system-site-packages` flag is required because GNURadio installs the `gnuradio` Python package globally. > The `--system-site-packages` flag is required because GNURadio installs the `gnuradio` Python package globally.
@ -46,11 +46,11 @@ uv venv --system-site-packages
4. **Add the MCP server configuration to your client configuration.** For example, for Claude Desktop or Cursor: 4. **Add the MCP server configuration to your client configuration.** For example, for Claude Desktop or Cursor:
```json ```json
"mcpServers": { "mcpServers": {
"GnuradioMCP": { "gr-mcp": {
"command": "uv", "command": "uv",
"args": [ "args": [
"--directory", "--directory",
"/path/to/gnuradioMCP", "/path/to/gr-mcp",
"run", "run",
"main.py" "main.py"
] ]