Metadata-Version: 2.4
Name: chipiq-mcp
Version: 0.0.9
Summary: MCP server for the ChipIQ tools
Project-URL: Documentation, https://github.com/ChipIQ/chipiq-mcp#readme
Project-URL: Issues, https://github.com/ChipIQ/chipiq-mcp/issues
Project-URL: Source, https://github.com/ChipIQ/chipiq-mcp
Author-email: Hans Bouwmeester <hans.bouwmeester@icloud.com>, Asav Gandhi <asavgandhi01@gmail.com>
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.13
Requires-Dist: chipiq>=0.0.9
Requires-Dist: mcp~=1.8.0
Requires-Dist: uvicorn>=0.38.0
Description-Content-Type: text/markdown

# chipiq-mcp

## Note: May need to use `uv cache clean` to ensure the latest `chipiq` package is picked up when starting the MCP-server.

## To configure the server using the PyPi chipiq-mcp package, use:
```
{
	"inputs": [],
	"servers": {
		"chipiq-mcp-server": {
			"type": "stdio",
			"command": "uvx",
			"args": [
				"chipiq-mcp==0.0.1"
			]
		}
	}
}
```

## To configure the server using a local development chipiq-mcp package, use:
```
{
	"inputs": [],
	"servers": {
		"chipiq-mcp-server": {
			"type": "stdio",
			"command": "uv",
			"args": [
				"tool",
				"run",
				"~/workspace/chipiq-mcp"
			]
		}
	}
}
```
