fid-mcp 0.1.0__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.

Potentially problematic release.


This version of fid-mcp might be problematic. Click here for more details.

@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: fid-mcp
3
+ Version: 0.1.0
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.8
13
+ Requires-Dist: mcp
14
+ Requires-Dist: pexpect
15
+ Requires-Dist: pydantic
16
+ Description-Content-Type: text/markdown
17
+
18
+ # Fid MCP Server
19
+
20
+ MCP server that dynamically serves tools according to `.fidtools` configs present in the working directory. `.fidtools` are generated by the Fid web application and intended to allow developers to quickly onboard coding agents to their unique development environments.
21
+
22
+ To install:
23
+ ```bash
24
+ claude mcp add fid --scope user --env FID_PAT=YOUR_FID_PAT -- uvx fid-mcp
25
+ ```
26
+ 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.
27
+
28
+ See [fidlabs.ai](https://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=YEH9BD4UWU9Hp3ifc3PGg4nk3FvFadfRt52-_fhCaqk,7365
3
+ fid_mcp/server.py,sha256=c3RYpLvUKJcMC4W26YfQ2lBWQwWRNOODESUsn-UDH6s,17633
4
+ fid_mcp/shell.py,sha256=mLbGIVuk4LGCT37tS8deDOyTSY2zPG57WE9KBGsKSHg,26459
5
+ fid_mcp-0.1.0.dist-info/METADATA,sha256=QaenjwxRoRNpK46yGi-S9UdSex05q-Ma9ftD0m52DEs,1210
6
+ fid_mcp-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
7
+ fid_mcp-0.1.0.dist-info/entry_points.txt,sha256=Xdh2RDDC7r5rIXe1kM3smsA1rgNxd1tafL_JuuTJf2o,48
8
+ fid_mcp-0.1.0.dist-info/licenses/LICENSE,sha256=5SkiXC7s2RbMDCdmq4N6MCWNKw151sFmkGbWS9BLSJE,177
9
+ fid_mcp-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ fid-mcp = fid_mcp.server:main
@@ -0,0 +1,6 @@
1
+ Copyright (c) 2025 Fid Labs Corporation
2
+
3
+ All rights reserved.
4
+
5
+ This software requires a valid license key and account from Fid Labs.
6
+ See https://fidlabs.ai for terms of service.