claude-ia-mcp-tools
Cliente de API → Lógica de negocio → Herramientas MCP
Pequeño ejemplo en Python que muestra cómo reutilizar un cliente de API y la lógica de negocio tanto desde el código normal de la aplicación como desde las herramientas MCP.
Estructura
src/example/
├── api/
│ └── api_client.py
├── business/
│ └── service.py
├── mcp/
│ └── server.py
└── main.pyEl ejemplo expone 5 operaciones:
get_userlist_userscreate_userupdate_userdelete_user
La capa MCP es deliberadamente delgada: valida las entradas de MCP y delega en el servicio de negocio. El servicio de negocio delega el trabajo HTTP al cliente de API.
Related MCP server: users-mcp
Instalación
python -m venv .venv
# Windows:
.venv\Scripts\activate
# Linux/macOS:
source .venv/bin/activate
pip install -r requirements.txtEjecutar el servidor MCP
python -m src.example.mcp.serverO configura el cliente MCP para iniciarlo:
python -m src.example.mcp.serverUsar el servidor MCP
Mediante terminal
{"jsonrpc":"2.0","method":"tools/list","id":1}O Claude
{
"mcpServers": {
"example-users": {
"command": "python",
"args": ["-m", "src.example.mcp.server"]
}
}
}Importante
Este es un ejemplo arquitectónico autocontenido. El cliente de API utiliza https://jsonplaceholder.typicode.com como API de demostración pública.
Para una API real, reemplaza la implementación de ApiClient y mantén las interfaces de negocio/MCP esencialmente sin cambios.
Probar la ejecución del flujo de trabajo
This server cannot be installed
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
- AlicenseNot gradedqualityCmaintenanceWraps the JSONPlaceholder fake REST API to enable testing and prototyping with CRUD operations on posts, comments, and other resources via MCP.12MIT
- FlicenseNot gradedqualityDmaintenanceA user management MCP server that enables CRUD operations on users stored in a JSON file, with random user generation using Faker.771
- FlicenseNot gradedqualityCmaintenanceEnables interaction with the JSONPlaceholder REST API for managing posts, comments, and users through MCP tools.

clue2app-user-mcpofficial
FlicenseAqualityCmaintenanceExposes user, membership, and role administration tools via MCP, acting as a thin passthrough to a coordinator API with RBAC enforced by the coordinator using caller bearer tokens.8
Related MCP Connectors
JSONPlaceholder MCP — wraps JSONPlaceholder fake REST API (free, no auth)
34 production API tools over one hosted MCP endpoint.
The official MCP Server from Mia-Platform to interact with Mia-Platform Console
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/vicboma1/claude-ia-mcp-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server