원클릭으로
native-mcp
MCP server integration in Claude Code — add servers to .mcp.json, configure transports, and use their tools natively.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
MCP server integration in Claude Code — add servers to .mcp.json, configure transports, and use their tools natively.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Compress conversation context — summarize the current session, extract key decisions and facts, then compact history to free up context window.
Generate insights about your Claude Code usage — what topics you work on most, common patterns, productivity trends.
Route Claude Code work by complexity, risk, and tool needs. Use when deciding how much reasoning depth a task needs, whether to read project memory first, whether the task should be decomposed, and whether the work is lightweight, standard, or investigation-heavy.
Query Polymarket prediction markets for probability data and research insights on real-world events.
Search and retrieve academic papers from arXiv using their free REST API. No API key needed.
Query Base (Ethereum L2) blockchain data — wallet balances, token info, transactions, gas analysis, contract inspection. No API key required.
| name | native-mcp |
| description | MCP server integration in Claude Code — add servers to .mcp.json, configure transports, and use their tools natively. |
| version | 1.0.0 |
| author | hermes-CCC (ported from Hermes Agent by NousResearch) |
| license | MIT |
| metadata | {"hermes":{"tags":["MCP","Tools","Integrations","Configuration","Claude-Code"],"related_skills":["mcporter"]}} |
Connect MCP servers to Claude Code and use their tools as first-class native tools.
.mcp.json in your project root{
"mcpServers": {
"server-name": {
"command": "python",
"args": ["path/to/server.py"],
"env": {
"API_KEY": "secret"
}
}
}
}
{
"mcpServers": {
"my-server": {
"command": "python",
"args": ["server.py"]
}
}
}
{
"mcpServers": {
"remote-server": {
"url": "http://localhost:8080/sse"
}
}
}
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/dir"]
}
}
}
{
"mcpServers": {
"git": {
"command": "uvx",
"args": ["mcp-server-git", "--repository", "."]
}
}
}
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_..."}
}
}
}
{
"mcpServers": {
"obsidian": {
"command": "npx",
"args": ["-y", "mcp-obsidian"],
"env": {"OBSIDIAN_VAULT_PATH": "/path/to/vault"}
}
}
}
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["-y", "@playwright/mcp"]
}
}
}
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@notionhq/mcp"],
"env": {"NOTION_API_KEY": "secret_..."}
}
}
}
{
"mcpServers": {
"sqlite": {
"command": "uvx",
"args": ["mcp-server-sqlite", "--db-path", "./data.db"]
}
}
}
node --version # must be 18+
npm --version
pip install uv
uvx --version
pip install fastmcp mcp
.mcp.jsonCheck Claude Code MCP logs:
~/.claude/logs/%APPDATA%\Claude\logs\Common issues:
command not found: install npx/uvx or use full pathenv section for API keysNever hardcode secrets in .mcp.json — use env vars from shell:
{
"mcpServers": {
"my-api": {
"command": "python",
"args": ["server.py"],
"env": {
"API_KEY": "${MY_API_KEY}"
}
}
}
}
Or set in .env and load via direnv / shell profile.
{
"mcpServers": {
"filesystem": {...},
"github": {...},
"obsidian": {...},
"playwright": {...},
"custom-api": {...}
}
}
All tools from all servers are available simultaneously.