You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Cas Parser Python library provides convenient access to the Cas Parser REST API from any Python 3.9+
7
7
application. The library includes type definitions for all request params and response fields,
@@ -13,8 +13,8 @@ It is generated with [Stainless](https://www.stainless.com/).
13
13
14
14
Use the Cas Parser MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
15
15
16
-
[](https://cursor.com/en-US/install-mcp?name=cas-parser-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImNhcy1wYXJzZXItbWNwIl0sImVudiI6eyJDQVNfUEFSU0VSX0FQSV9LRVkiOiJNeSBBUEkgS2V5In19)
17
-
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22cas-parser-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22cas-parser-mcp%22%5D%2C%22env%22%3A%7B%22CAS_PARSER_API_KEY%22%3A%22My%20API%20Key%22%7D%7D)
16
+
[](https://cursor.com/en-US/install-mcp?name=cas-parser-mcp&config=eyJuYW1lIjoiY2FzLXBhcnNlci1tY3AiLCJ0cmFuc3BvcnQiOiJodHRwIiwidXJsIjoiaHR0cHM6Ly9jYXMtcGFyc2VyLnN0bG1jcC5jb20iLCJoZWFkZXJzIjp7IngtYXBpLWtleSI6Ik15IEFQSSBLZXkifX0)
17
+
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22cas-parser-mcp%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fcas-parser.stlmcp.com%22%2C%22headers%22%3A%7B%22x-api-key%22%3A%22My%20API%20Key%22%7D%7D)
18
18
19
19
> Note: You may need to set environment variables in your MCP client.
20
20
@@ -26,7 +26,7 @@ The full API of this library can be found in [api.md](api.md).
26
26
27
27
```sh
28
28
# install from PyPI
29
-
pip install cas_parser
29
+
pip install cas-parser-python
30
30
```
31
31
32
32
## Usage
@@ -86,7 +86,7 @@ You can enable this by installing `aiohttp`:
86
86
87
87
```sh
88
88
# install from PyPI
89
-
pip install cas_parser[aiohttp]
89
+
pip install cas-parser-python[aiohttp]
90
90
```
91
91
92
92
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
0 commit comments