circuit-mcp 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- circuit_mcp-0.1.0/.gitignore +38 -0
- circuit_mcp-0.1.0/PKG-INFO +27 -0
- circuit_mcp-0.1.0/README.md +14 -0
- circuit_mcp-0.1.0/circuit_mcp/__init__.py +19 -0
- circuit_mcp-0.1.0/pyproject.toml +24 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Python-generated files
|
|
2
|
+
__pycache__/
|
|
3
|
+
.pytest_cache/
|
|
4
|
+
*.py[oc]
|
|
5
|
+
build/
|
|
6
|
+
dist/
|
|
7
|
+
wheels/
|
|
8
|
+
*.egg-info
|
|
9
|
+
.ruff_cache/
|
|
10
|
+
.coverage
|
|
11
|
+
|
|
12
|
+
# Virtual environments
|
|
13
|
+
.venv
|
|
14
|
+
|
|
15
|
+
# Claude Code
|
|
16
|
+
.claude/
|
|
17
|
+
|
|
18
|
+
.mcp.json
|
|
19
|
+
|
|
20
|
+
# CodeGraphContext (MCP) local index config
|
|
21
|
+
.cgcignore
|
|
22
|
+
|
|
23
|
+
# Runtime artifacts
|
|
24
|
+
workspace/
|
|
25
|
+
ltspice-mcp.toml
|
|
26
|
+
.ltspice-mcp/
|
|
27
|
+
*.raw
|
|
28
|
+
*.log
|
|
29
|
+
*.op.raw
|
|
30
|
+
*.net
|
|
31
|
+
*.exe.log
|
|
32
|
+
|
|
33
|
+
# Checked-in test fixtures are intentional inputs, not runtime artifacts —
|
|
34
|
+
# never ignore them (recorded real .raw/.log decks back the regression suite).
|
|
35
|
+
!tests/fixtures/**
|
|
36
|
+
|
|
37
|
+
# packaged Desktop Extensions (build artifacts)
|
|
38
|
+
*.mcpb
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: circuit-mcp
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Alias for ltspice-mcp: a SPICE circuit-simulation MCP server (LTspice/ngspice). Installs and runs ltspice-mcp.
|
|
5
|
+
Project-URL: Homepage, https://github.com/cognitohazard/ltspice-mcp
|
|
6
|
+
Project-URL: Repository, https://github.com/cognitohazard/ltspice-mcp
|
|
7
|
+
Project-URL: Issues, https://github.com/cognitohazard/ltspice-mcp/issues
|
|
8
|
+
License-Expression: GPL-3.0-or-later
|
|
9
|
+
Keywords: circuit-simulation,eda,ltspice,mcp,model-context-protocol,ngspice,spice
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Requires-Dist: ltspice-mcp
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# circuit-mcp
|
|
15
|
+
|
|
16
|
+
Alias for [**ltspice-mcp**](https://pypi.org/project/ltspice-mcp/) — a SPICE
|
|
17
|
+
circuit-simulation MCP server (LTspice and ngspice) for Claude and other LLMs.
|
|
18
|
+
|
|
19
|
+
Installing this package installs and runs `ltspice-mcp`:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
uvx circuit-mcp # run the server
|
|
23
|
+
pip install circuit-mcp # installs ltspice-mcp as a dependency
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
`ltspice-mcp` is the canonical package. Documentation, configuration, issues,
|
|
27
|
+
and source live there: https://github.com/cognitohazard/ltspice-mcp
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# circuit-mcp
|
|
2
|
+
|
|
3
|
+
Alias for [**ltspice-mcp**](https://pypi.org/project/ltspice-mcp/) — a SPICE
|
|
4
|
+
circuit-simulation MCP server (LTspice and ngspice) for Claude and other LLMs.
|
|
5
|
+
|
|
6
|
+
Installing this package installs and runs `ltspice-mcp`:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
uvx circuit-mcp # run the server
|
|
10
|
+
pip install circuit-mcp # installs ltspice-mcp as a dependency
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
`ltspice-mcp` is the canonical package. Documentation, configuration, issues,
|
|
14
|
+
and source live there: https://github.com/cognitohazard/ltspice-mcp
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Alias package for ltspice-mcp.
|
|
2
|
+
|
|
3
|
+
Installing ``circuit-mcp`` pulls in the canonical ``ltspice-mcp`` distribution
|
|
4
|
+
and runs the same server, self-identifying as ``circuit-mcp`` in the MCP
|
|
5
|
+
handshake. See https://github.com/cognitohazard/ltspice-mcp.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import os
|
|
9
|
+
|
|
10
|
+
__all__ = ["main"]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def main() -> None:
|
|
14
|
+
# Identify as this alias in serverInfo.name. Set before importing the server
|
|
15
|
+
# (its name is bound at import time); an explicit override still wins.
|
|
16
|
+
os.environ.setdefault("LTSPICE_MCP_SERVER_NAME", "circuit-mcp")
|
|
17
|
+
from ltspice_mcp.main import main as _main
|
|
18
|
+
|
|
19
|
+
_main()
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "circuit-mcp"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Alias for ltspice-mcp: a SPICE circuit-simulation MCP server (LTspice/ngspice). Installs and runs ltspice-mcp."
|
|
5
|
+
keywords = ["mcp", "spice", "ngspice", "ltspice", "circuit-simulation", "eda", "model-context-protocol"]
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
license = "GPL-3.0-or-later"
|
|
8
|
+
requires-python = ">=3.11"
|
|
9
|
+
dependencies = ["ltspice-mcp"]
|
|
10
|
+
|
|
11
|
+
[project.urls]
|
|
12
|
+
Homepage = "https://github.com/cognitohazard/ltspice-mcp"
|
|
13
|
+
Repository = "https://github.com/cognitohazard/ltspice-mcp"
|
|
14
|
+
Issues = "https://github.com/cognitohazard/ltspice-mcp/issues"
|
|
15
|
+
|
|
16
|
+
[project.scripts]
|
|
17
|
+
circuit-mcp = "circuit_mcp:main"
|
|
18
|
+
|
|
19
|
+
[build-system]
|
|
20
|
+
requires = ["hatchling"]
|
|
21
|
+
build-backend = "hatchling.build"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
packages = ["circuit_mcp"]
|