# Server-Side SDKs

## Server-Side SDKs

Currently, we have client libraries available for the following languages:

- [Node.js](https://github.com/pluggyai/pluggy-node)
- [.NET](https://github.com/pluggyai/pluggy-net)
- [Java](https://github.com/pluggyai/pluggy-java)

### Installation

To install the client library, use the following command:

**Node.js (npm):**

```bash
npm install --save pluggy-sdk
```

**C# (.NET):**

```powershell
Install-Package Pluggy.SDK
```

**Java (Maven):**

To install in Java, using Maven, add a dependency to your `pom.xml`:

```xml
<dependency>
  <groupId>ai.pluggy</groupId>
  <artifactId>pluggy-java</artifactId>
  <version>1.5.0</version>
</dependency>
```

Currently, the package is available in GitHub Packages, so make sure to have the GH Packages server config with your Personal GH Access Token in your `.m2/settings.xml` file. Navigate to [this guide](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry) for more details.

You can also do an integration yourself, by sending HTTP requests directly to our API.

> **Interested in contributing?** Let us know if you require or if you are interested in contributing a library for a language not represented here! Write us to hello@pluggy.ai

### You can also build your own one!

Using our `oas.json` which is up-to-date with all the latest endpoint definitions you can create your own integration. You can check out our OAS (Open API Specification) [here](https://api.pluggy.ai/oas3.json).

Some examples are driven by the community:

- [Python](https://github.com/diraol/pluggy-python)