We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wanaku-ai/wanaku'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ai.wanaku</groupId>
<artifactId>core</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>core-capabilities-base</artifactId>
<name>Wanaku :: Core :: Capabilities Base</name>
<dependencies>
<dependency>
<groupId>ai.wanaku</groupId>
<artifactId>core-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ai.wanaku</groupId>
<artifactId>core-service-discovery</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ai.wanaku</groupId>
<artifactId>core-exchange</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ai.wanaku.sdk</groupId>
<artifactId>capabilities-config-provider-api</artifactId>
</dependency>
<dependency>
<groupId>ai.wanaku.sdk</groupId>
<artifactId>capabilities-config-provider-file</artifactId>
</dependency>
<dependency>
<groupId>ai.wanaku.sdk</groupId>
<artifactId>capabilities-data-files</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-scheduler</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-grpc</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-oidc-client</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>