Slim MCP
슬림-MCP: 클로드 툴스 🤖
🚀 MCP 프로토콜을 통해 강력한 Python 기반 도구로 Claude를 강화하세요
✨ 특징
🧮 계산기 : 복잡한 수학 계산을 수행합니다
🌦️ 날씨 : 현재 날씨 예보와 알림을 받으세요
🕒 DateTime : 로컬 및 UTC 형식으로 현재 시간에 액세스합니다.
🔌 확장 가능 : 간단한 Python 함수로 사용자 정의 도구를 쉽게 추가할 수 있습니다.
💻 데스크톱 통합 : Claude 데스크톱 앱과의 원활한 통합
🖱️ 커서 IDE : 개발자를 위한 커서 IDE와의 기본 통합
Related MCP server: MCP Server with External Tools
📋 목차
🚀 설치
필수 조건
파이썬 3.11+
Conda(추천)
Conda로 설정(권장)
지엑스피1
🎮 사용법
Claude 구성
Claude 구성 파일에 다음을 추가하세요.
{
"mcpServers": {
"claude-tools": {
"command": "/path/to/conda/envs/mcp-tools/bin/python",
"args": ["-m", "claude_tools.main"]
}
}
}커서 IDE 구성
NAME: claude-tools
TYPE: command
COMMAND: /path/to/conda/envs/mcp-tools/bin/python -m claude_tools.main예시 프롬프트
Can you calculate 25^3 + sqrt(196)?
What's the current time in UTC?
What's the weather like in Austin, TX?🔌 통합
Claude AI Desktop : MCP 프로토콜을 통한 기본 통합
커서 IDE : 개발 워크플로우를 위한 직접 통합
Claude Web : 구성을 통해 Claude Web과 호환 가능
💻 개발
프로젝트 구조
slim-MCP/
├── src/
│ └── claude_tools/
│ ├── __init__.py
│ ├── calculator.py # Math calculation tool
│ ├── datetime_tool.py # Date and time utilities
│ ├── main.py # Entry point
│ └── weather.py # Weather forecasting tool
├── http_server.py # HTTP server for MCP
├── pyproject.toml # Project configuration
├── .gitignore # Git ignore file
└── LICENSE # MIT License새로운 도구 만들기
src/claude_tools/에 새로운 Python 파일을 만듭니다.
# src/claude_tools/my_tool.py
def my_awesome_function(param: str) -> str:
"""Description of what this tool does.
Args:
param: Description of the parameter
Returns:
A string with the result
"""
result = f"Processed: {param}"
return result
def register_my_tools(mcp):
"""Register all my tools with the MCP server."""
mcp.tool()(my_awesome_function)__init__.py에 도구를 가져와 등록합니다.
# In src/claude_tools/__init__.py
from .calculator import register_calculator_tools
from .datetime_tool import register_datetime_tools
from .weather import register_weather_tools
from .my_tool import register_my_tools # Add this line
def register_all_tools(mcp):
register_calculator_tools(mcp)
register_datetime_tools(mcp)
register_weather_tools(mcp)
register_my_tools(mcp) # Add this line서버를 다시 시작하면 새로운 도구를 사용할 준비가 됩니다!
👥 기여하기
기여를 환영합니다! 풀 리퀘스트를 제출해 주세요.
저장소를 포크하세요
기능 브랜치를 생성합니다(
git checkout -b feature/amazing-feature)변경 사항을 커밋하세요(
git commit -m 'Add some amazing feature')브랜치에 푸시(
git push origin feature/amazing-feature)풀 리퀘스트 열기
📄 라이센스
이 프로젝트는 MIT 라이선스에 따라 라이선스가 부여되었습니다. 자세한 내용은 라이선스 파일을 참조하세요.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA modular, extensible FastAPI-based platform that aggregates multiple AI tools and microservices into a unified interface with standardized I/O formats, perfect for frontend integration or LLM system orchestration.4MIT
- Alicense-qualityDmaintenanceEnables AI models to access external services including weather data, file system operations, and SQLite database interactions through a standardized JSON-RPC interface. Features production-ready architecture with security, rate limiting, and comprehensive error handling.283MIT
- Flicense-qualityDmaintenanceMulti-agent AI tools for email automation (Outlook), weather (OpenWeather API), sticky notes, and arithmetic, all served via FastMCP.
- Flicense-qualityCmaintenanceProvides tools for image generation, weather, geocoding, and basic utilities, deployable on Vercel via Streamable HTTP.
Related MCP Connectors
60+ units, live FX, timezones, and date arithmetic for AI agents.
Universal AI API Orchestrator — 1,554 tools, 96 services. One install.
500+ deterministic tools for AI agents: math, conversion, validation, hashing, encoding, date/time.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/webdevtodayjason/slim-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server