fid-mcp 0.1.5__py3-none-any.whl
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.
- fid_mcp/__init__.py +1 -0
- fid_mcp/config.py +243 -0
- fid_mcp/server.py +611 -0
- fid_mcp/shell.py +883 -0
- fid_mcp-0.1.5.dist-info/METADATA +29 -0
- fid_mcp-0.1.5.dist-info/RECORD +9 -0
- fid_mcp-0.1.5.dist-info/WHEEL +4 -0
- fid_mcp-0.1.5.dist-info/entry_points.txt +2 -0
- fid_mcp-0.1.5.dist-info/licenses/LICENSE +6 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fid-mcp
|
|
3
|
+
Version: 0.1.5
|
|
4
|
+
Summary: MCP Server for serving configurable Fid toolkits
|
|
5
|
+
Project-URL: Homepage, https://fidlabs.ai
|
|
6
|
+
Author-email: Fid Labs <contact@fidlabs.ai>
|
|
7
|
+
License-Expression: LicenseRef-Proprietary
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: mcp,model-context-protocol,server,tools
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Requires-Dist: aiohttp
|
|
14
|
+
Requires-Dist: mcp
|
|
15
|
+
Requires-Dist: pexpect
|
|
16
|
+
Requires-Dist: pydantic
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# Fid MCP Server
|
|
20
|
+
|
|
21
|
+
MCP server that dynamically serves tools according to `fidtools.json` or `.fidtools` configs present in the working directory. Toolkits are generated by the Fid web application and intended to allow developers to quickly onboard coding agents to their unique development environments.
|
|
22
|
+
|
|
23
|
+
To install:
|
|
24
|
+
```bash
|
|
25
|
+
claude mcp add Fid --scope user --env FID_PAT=YOUR_FID_PAT -- uvx fid-mcp
|
|
26
|
+
```
|
|
27
|
+
Note: retrieve your PAT from the user menu in your Fid project, or just use the pre-constructed install command provided by the "Connect to your Agent" button.
|
|
28
|
+
|
|
29
|
+
See [docs.fidlabs.ai](https://docs.fidlabs.ai) for more information or reach out to us at [contact@fidlabs.ai](mailto:contact@fidlabs.ai).
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
fid_mcp/__init__.py,sha256=cv_5UWE6kUBeTfAY6JZq9o47hEfzaLhcoKW0rw8GKq8,17
|
|
2
|
+
fid_mcp/config.py,sha256=tDnCwNnYl5rlCmJFbQ0kJiYUNMYqBcSTfETngsfCCDk,8102
|
|
3
|
+
fid_mcp/server.py,sha256=1p2RCjbQUKplURAGlwx2imxVpwKsd9Aal5H0llU8Ask,23375
|
|
4
|
+
fid_mcp/shell.py,sha256=Z-4hySXs7_vkkZkRgpPlUWBs9AcBIISLIZelPInQd4Q,32245
|
|
5
|
+
fid_mcp-0.1.5.dist-info/METADATA,sha256=wzcfAf2hnRoFKyMubJsGEy8wmbQIrqHHCbrpD-wNkLU,1260
|
|
6
|
+
fid_mcp-0.1.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
7
|
+
fid_mcp-0.1.5.dist-info/entry_points.txt,sha256=Xdh2RDDC7r5rIXe1kM3smsA1rgNxd1tafL_JuuTJf2o,48
|
|
8
|
+
fid_mcp-0.1.5.dist-info/licenses/LICENSE,sha256=5SkiXC7s2RbMDCdmq4N6MCWNKw151sFmkGbWS9BLSJE,177
|
|
9
|
+
fid_mcp-0.1.5.dist-info/RECORD,,
|