WaniKani MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with WaniKani MCP or direct API to check study progress, list upcoming reviews, inspect kanji and vocabulary, and update study notes through natural language.

WaniKani logoWaniKani
Api Key

WaniKani is a spaced-repetition platform for learning Japanese radicals, kanji, and vocabulary. It helps learners build long-term retention with structured lessons, reviews, and progress tracking.

16 Tools

Try WaniKani now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
WaniKani
Try asking
TOOLS

Supported Tools

Every WaniKani action and event your agent gets out of the box.

Create Study Material

Create the sole study-material record for a subject, optionally with notes or meaning synonyms.

Get Assignments

Retrieve one assignment by ID, or list the connected user's assignments using progress, availability, level, subject, and update filters.

Get Level Progressions

Retrieve one level-progression record by ID, or list the user's level history with ID and update-time filters.

Get Resets

Retrieve one account-reset record by ID, or list account level-reset history.

Get Reviews

Retrieve one completed review by ID, or list completed reviews filtered by review IDs, subject IDs, or update time.

Get Review Statistics

Retrieve one per-subject review statistic by ID, or list answer totals, streaks, and accuracy using subject and percentage filters.

Get Spaced Repetition Systems

Retrieve one spaced-repetition system by ID, or list SRS definitions and their stage intervals.

Get Study Materials

Retrieve one study-material record by ID, or list the user's subject notes and meaning synonyms with subject and update filters.

Get Study Summary

Get lessons available now and review availability over the next 24 hours for the connected user.

Get Subjects

Retrieve one WaniKani subject by ID, or search radicals, kanji, vocabulary, and kana vocabulary by IDs, types, slugs, levels, visibility, or update time.

Get User

Get the connected user's identity, level, subscription status, vacation state, and application preferences.

Get Voice Actors

Retrieve one WaniKani pronunciation voice actor by ID, or list voice actors with ID and update-time filters.

Start Assignment

Irreversibly mark one unlocked lesson assignment as started and move it into reviews.

Submit Review

Irreversibly submit a completed review, changing assignment progress and review statistics.

Update Study Material

Update at least one note or meaning-synonym field on an existing study-material record without changing its subject.

Update User Preferences

Update one or more supported WaniKani lesson or review preferences.

SETUP GUIDE

Connect WaniKani MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for WaniKani
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Show my upcoming WaniKani reviews today'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect WaniKani API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute WaniKani Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Show my upcoming WaniKani reviews today'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute WaniKani actions with your Agent

Why Use Composio?

AI Native WaniKani Integration

  • Supports both WaniKani MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying WaniKani study data like assignments, subjects, reviews, and study materials

Managed Auth

  • Secure API key handling so you don't have to hard-code WaniKani credentials
  • Central place to manage, scope, and revoke WaniKani access
  • Per user and per environment credentials for safer agent workflows

Agent Optimized Design

  • Tools are tuned for clear agent behavior when fetching reviews, subjects, assignments, and study progress
  • Comprehensive execution logs so you always know what your agent checked or updated in WaniKani

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access WaniKani
  • Scoped, least privilege access to WaniKani resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, WaniKani requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with WaniKani.It takes 30 seconds.

Managed auth, hosted MCP servers, and every WaniKani tool your agent needs.Free to start.

Start building