Skip to main content
Glama
primadonna-gpters

AgentSkills MCP Server

@agentskills/mcp-server

MCP (Model Context Protocol) server for AgentSkills API. Gives Claude, Cursor, and other AI tools access to web search, code review, and Korean business data.

Quick Start

1. Get an API key

Sign up for free at agentskills.io — no credit card required, 100 free calls/month.

2. Add to Claude Desktop

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

{
  "mcpServers": {
    "agentskills": {
      "command": "npx",
      "args": ["-y", "@gpters/agentskills-mcp"],
      "env": {
        "AGENTSKILLS_API_KEY": "sk_your_key_here"
      }
    }
  }
}

Restart Claude Desktop and you're done.

3. Add to Claude Code

claude mcp add agentskills -- npx -y @gpters/agentskills-mcp

Then set your API key:

export AGENTSKILLS_API_KEY=sk_your_key_here

Or add it to your shell profile (~/.zshrc, ~/.bashrc).

4. Add to Cursor

Open Settings → MCP and add:

{
  "agentskills": {
    "command": "npx",
    "args": ["-y", "@gpters/agentskills-mcp"],
    "env": {
      "AGENTSKILLS_API_KEY": "sk_your_key_here"
    }
  }
}

Related MCP server: Korean Company Information MCP Server

Available Tools

Real-time web search with structured results and AI summary.

Parameters:

  • query (required) — search query

  • maxResults — number of results (default: 5)

  • language"ko" or "en" (default: "ko")

Example:

"Search for the latest news about Samsung Electronics"


code_review

Analyzes code for bugs, security issues, and improvement suggestions.

Parameters:

  • code (required) — source code (max 50,000 chars)

  • language — programming language (optional, auto-detected)

  • focus"security", "performance", "quality", or "all" (default)

Example:

"Review this TypeScript file for security issues"


business_data

Korean company information, news, and financial data.

Parameters:

  • type (required) — "company-info", "news", or "financial"

  • companyName — company name in Korean or English

  • businessNumber — Korean business registration number (사업자등록번호)

Example:

"Look up company info for 삼성전자"


Pricing

Plan

Monthly calls

Price

Free

100

₩0

Pro

10,000

₩49,000/mo

Enterprise

Unlimited

Contact us


License

MIT

Available Tools

3 tools
business_dataB

Look up Korean business data including company information, news, and financial data. Useful for researching Korean companies by name or business registration number.

ParametersJSON Schema
NameRequiredDescriptionDefault
typeYesType of data to retrieve: 'company-info', 'news', or 'financial'
companyNameNoCompany name in Korean or English (e.g., '삼성전자', 'Samsung Electronics')
businessNumberNoKorean business registration number (사업자등록번호). Optional alternative to companyName.

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description bears full responsibility for behavioral disclosure. It identifies the operation as 'look up' (read-only implication) and data types retrieved, but omits critical operational details: error behavior when companies aren't found, data freshness/recency, rate limits, or whether results are structured vs. plain text.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences efficiently structured: capability declaration followed by use case. No redundancy or filler content, though the second sentence partially overlaps with the schema's explicit mentioning of identification methods.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequate for a 3-parameter lookup tool with complete schema coverage. However, lacking both annotations and output schema, the description should ideally disclose return value structure or empty-result behavior. As written, it leaves the agent uncertain about response format.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline applies. The description mirrors the schema content (mapping enum values to data types and noting the identification alternatives) but does not add syntactic constraints, validation rules, or interaction logic beyond what the schema already documents.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear verb 'Look up' and specific resource 'Korean business data' with enumerated subtypes (company info, news, financial). However, it lacks explicit differentiation from sibling 'web_search', which could also retrieve company information, leaving the agent to infer the specialization from 'Korean' context.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

States the tool is 'Useful for researching Korean companies' and identifies the two lookup methods (name or registration number), providing implied context. However, it lacks explicit 'when-not-to-use' guidance or comparison to 'web_search' alternative, leaving ambiguity about when this specialized tool is preferred over general search.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

code_reviewA

Analyze code for issues, security vulnerabilities, and improvement suggestions. Returns a score, summary, list of issues with severity, and positive observations.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesThe source code to review (max 50,000 characters)
languageNoProgramming language of the code (e.g., 'typescript', 'python', 'go'). Optional.
focusNoReview focus area: 'security', 'performance', 'quality', or 'all' (default)all

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It compensates for missing output schema by describing return values (score, summary, issues, observations). However, lacks operational details like side effects, code privacy/storage policies, or rate limits expected for a code submission tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two well-structured sentences: first states purpose, second describes output. No redundancy or waste. Front-loaded with the most critical information (what it does) before return value details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Good coverage given constraints: describes output shape to compensate for missing output schema, and all parameters are well-defined in schema. Could improve by noting privacy considerations when submitting code or supported language nuances, but functionally complete for invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with full descriptions for all 3 parameters including enums and defaults. Description doesn't add parameter-specific semantics beyond the schema, but the comprehensive schema makes additional description unnecessary. Baseline 3 appropriate for high-coverage schemas.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear specific verb ('Analyze') and resource ('code') with scope covering issues, security, and improvements. Clearly distinguishes from siblings 'business_data' and 'web_search' by domain (code analysis vs. business data/web search).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied by the clear domain description (code analysis), but lacks explicit guidelines on when to use vs. siblings or prerequisites like 'use when you need static analysis' or 'do not use for runtime debugging'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: business_data focuses on Korean business information, code_review analyzes code quality and security, and web_search performs general web searches. There is no overlap in functionality or ambiguity between these tools.

Naming Consistency4/5

The naming follows a consistent snake_case pattern (business_data, code_review, web_search), which is readable and predictable. The only minor deviation is that 'business_data' uses a compound noun while the others are more action-oriented, but this doesn't break the overall consistency.

Tool Count3/5

With only 3 tools, the server feels thin for a general-purpose 'AgentSkills' server. While each tool is distinct, the scope implied by the server name suggests a broader set of agent capabilities might be expected, making this borderline appropriate.

Completeness3/5

For a server named 'AgentSkills', there are notable gaps in common agent capabilities such as file operations, data processing, or communication tools. However, the three provided tools cover useful domains (business research, code analysis, web search) without dead ends in their respective areas.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Provides access to Naver Search APIs, allowing AI agents to search across multiple categories (blogs, news, books, images, shopping items, etc.) with structured responses optimized for LLM consumption.
    13
    4
    Apache 2.0
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to query Korean listed companies' financial statements, public disclosures, executive information, and shareholder structures in real-time using the DART API.
    2
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables real-time search and analysis of Korean laws, legal precedents, and administrative rules through the National Law Information Center Open API, allowing AI agents to access official legal information for contract review, compliance, and legal research.
    73
  • F
    license
    B
    quality
    B
    maintenance
    Provides AI with real-time stock data from Naver Securities and Yahoo Finance via 47 tools, enabling accurate analysis without API keys for Korean and US markets.
    56
    1

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/primadonna-gpters/agentskills-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server