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
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,15 @@ The Cas Parser Java SDK provides convenient access to the [Cas Parser REST API](
11
11
12
12
It is generated with [Stainless](https://www.stainless.com/).
13
13
14
+
## MCP Server
15
+
16
+
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.
17
+
18
+
[](https://cursor.com/en-US/install-mcp?name=cas-parser-node-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImNhcy1wYXJzZXItbm9kZS1tY3AiXX0)
19
+
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22cas-parser-node-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22cas-parser-node-mcp%22%5D%7D)
20
+
21
+
> Note: You may need to set environment variables in your MCP client.
22
+
14
23
<!-- x-release-please-start-version -->
15
24
16
25
The REST API documentation can be found on [docs.casparser.in](https://docs.casparser.in/reference). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.cas_parser.api/cas-parser-java/0.0.4).
@@ -274,6 +283,8 @@ If the SDK threw an exception, but you're _certain_ the version is compatible, t
274
283
> [!CAUTION]
275
284
> We make no guarantee that the SDK works correctly when the Jackson version check is disabled.
276
285
286
+
Also note that there are bugs in older Jackson versions that can affect the SDK. We don't work around all Jackson bugs ([example](https://github.com/FasterXML/jackson-databind/issues/3240)) and expect users to upgrade Jackson for those instead.
Copy file name to clipboardExpand all lines: cas-parser-java-client-okhttp/src/main/kotlin/com/cas_parser/api/client/okhttp/CasParserOkHttpClientAsync.kt
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ import java.net.Proxy
16
16
importjava.time.Clock
17
17
importjava.time.Duration
18
18
importjava.util.Optional
19
+
importjava.util.concurrent.ExecutorService
19
20
importjavax.net.ssl.HostnameVerifier
20
21
importjavax.net.ssl.SSLSocketFactory
21
22
importjavax.net.ssl.X509TrustManager
@@ -44,11 +45,31 @@ class CasParserOkHttpClientAsync private constructor() {
0 commit comments