CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
jayjodev avatar

Vivory Verification Gateway

jayjodev/vivory-mcp
authSTDIOregistry active
Summary

Wraps Korean government statistical APIs (KOSIS, with Bank of Korea ECOS and others planned) so you can query population, GDP, CPI, employment, and trade data in English without creating local accounts or handling Korean-only responses. Routes requests through Vivory's gateway at api.vivory.app, which handles caching, normalization, and attribution. Ships 15 tools for searching indicators, pulling time series, and browsing table metadata. Install via uvx, ask Claude "what's Korea's CPI trend over the last 24 months", and it picks the right endpoint. Useful if you're building anything that needs authoritative Korean economic or demographic data without the usual API bureaucracy.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Vivory MCP Servers

Korean public-data MCP servers for AI agents — KOSIS Statistics Korea (live), BoK ECOS · NEIS · LOCALDATA (planned).

Built and maintained by Vivory. Backend powered by the Vivory Korea Data Gateway.

PyPI - Version License: MIT


Why

Korean public statistics (population, GDP, CPI, employment, trade, etc.) are published by official agencies via Korean-only APIs that require local accounts and return JS-literal responses with mixed taxonomies. This repo packages them as Model Context Protocol servers so any MCP-compatible client (Claude Desktop, Claude Code, etc.) can query Korean data in English with zero setup.

Foreign user → Claude → vivory-mcp-* → api.vivory.app → kosis.kr / ecos.bok.or.kr / etc.
                                       (caching, attribution, normalization)

No KOSIS account, no API key, no Korean phone — just install and ask.


Packages

This is a monorepo of MCP server packages. Each is independently installable from PyPI.

PackageStatusToolsSource
vivory-mcp-kosisLive15KOSIS — Statistics Korea curated key indicators
vivory-mcp-koreaLive (KOSIS only)15Umbrella — adds BoK ECOS, NEIS, LOCALDATA, etc. as v0.2+

Recommended:

  • One source only → install the dedicated package (vivory-mcp-kosis)
  • All Korean data → install the umbrella (vivory-mcp-korea) — auto-grows as we add sources

Quick install (Claude Desktop)

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "vivory-kosis": {
      "command": "uvx",
      "args": ["vivory-mcp-kosis"]
    }
  }
}

Or to use the umbrella (all Korean data):

{
  "mcpServers": {
    "vivory-korea": {
      "command": "uvx",
      "args": ["vivory-mcp-korea"]
    }
  }
}

Restart Claude Desktop. The tools appear in the tool palette.

PyPI release pending — until then use:

uvx --from "git+https://github.com/jayjodev/vivory-mcp.git#subdirectory=packages/mcp-server-kosis" vivory-mcp-kosis

Example prompts

Ask Claude (or any MCP client):

"What's Korea's CPI trend over the last 24 months?" "Show me Korean quarterly GDP growth, last 12 quarters." "Search KOSIS for tables related to youth unemployment." "What's the indicator ID for 추계인구?"

Claude picks the right tool automatically.


Architecture

packages/
├── mcp-server-kosis/          # KOSIS standalone MCP server
│   ├── src/vivory_mcp_kosis/
│   │   ├── server.py          # 15 KOSIS tool definitions
│   │   └── client.py          # HTTP wrapper to api.vivory.app
│   ├── pyproject.toml
│   └── README.md
│
└── mcp-server-korea/          # Umbrella MCP server
    ├── src/vivory_mcp_korea/
    │   ├── server.py          # Aggregates tools from all sources
    │   ├── client.py
    │   └── tools/
    │       ├── kosis.py       # KOSIS tool catalog
    │       └── (ecos.py, neis.py, etc. — planned)
    └── ...

All packages are thin wrappers — no API keys, no rate limit handling, no parsing logic. They translate MCP tool calls → HTTP GETs against api.vivory.app, where the heavy lifting lives.


Self-hosting

Set VIVORY_API_BASE to point at your own backend:

export VIVORY_API_BASE="http://localhost:8000/api"

The Vivory backend code is not in this repo (it lives in the private Vivory app monorepo). If you want to run the full stack, you'll need to implement the /api/public-tools/kosis/* endpoints yourself or contact us about licensing.


License

  • MCP wrapper code (this repo): MIT
  • KOSIS data: 공공누리(KOGL) Type 1 — commercial use permitted with attribution
  • Other sources: per-source license (see each package's README)

Every tool response includes an attribution block. When citing or redistributing data, include the attribution_required text.


Contributing

Issues and PRs welcome. Specifically interested in:

  • Adding more Korean public data sources to the umbrella
  • Improving tool descriptions for better LLM tool-use accuracy
  • Adapting for other MCP clients beyond Claude

Project status

  • Repo source of truth: this repo (vivory-mcp) — packages here mirror what's published to PyPI
  • Vivory backend: private (api.vivory.app)
  • Issues / discussions: github.com/jayjodev/vivory-mcp/issues

🇰🇷 Built in Seoul · 🌐 vivory.app

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

VIVORY_API_KEYsecret

Optional Vivory Pro API key for higher daily limits (10,000/day Pro vs 100/day anonymous). Get one at api.vivory.app/dashboard.

VIVORY_API_BASEdefault: https://api.vivory.app/api

Override the upstream gateway URL (default: https://api.vivory.app/api). Useful for self-hosted Vivory backends.

Categories
Media & Entertainment
Registryactive
Packagevivory-mcp-verification
TransportSTDIO
AuthRequired
UpdatedMay 21, 2026
View on GitHub

Related Media & Entertainment MCP Servers

View all →
johanvd75-byte avatar
The Cracks Index

io.github.johanvd75-byte/cracks-index

Read-only MCP server for The Cracks Index: ranks countries and regions on social-safety strength
kale-eb avatar
Vyra

io.github.kale-eb/vyra

Edit video by talking to your AI — search footage, cut timelines, apply effects, add captions.
leshchenko1979 avatar
Fast Mcp Telegram

io.github.leshchenko1979/fast-mcp-telegram

Full Telegram API for AI agents: messages, media, calls, polls, groups, reactions, admin, search
luca-blight avatar
DevMatch - AI Recruiting & Mission-Aligned Engineer Discovery

io.github.luca-blight/devmatch

AI recruiting for mission-aligned engineers — verified across GitHub, X, YouTube, Medium, and more
somosmaqui avatar
Maqui Analytics

io.github.luis-fuentes/maqui

Marketing analytics for local businesses — Instagram, ads, web traffic, SEO and reviews.
lumiclip avatar
Lumiclip

io.github.lumiclip/lumiclip

Turn YouTube videos into short-form clips from any AI assistant