MCP Test Server
A Model Context Protocol server that enables LLMs to interact with user and task data through JSON-RPC, offering tools like user management, task creation, and search functionality.
Tools
get_users
Get all users from the mock database
get_user
Get a specific user by ID
create_user
Create a new user
get_tasks
Get all tasks from the mock database
get_task
Get a specific task by ID
create_task
Create a new task
update_task
Update an existing task
search
Search users and tasks
README
MCP Test Server
Este projeto contém dois tipos de servidores:
- HTTP Server (
server.js) - Um servidor REST API tradicional - MCP Server (
mcp-server.js) - Um servidor Model Context Protocol real
⚠️ Diferença Importante
HTTP Server (server.js)
- ✅ Servidor REST API tradicional
- ✅ Funciona no navegador (http://localhost:3000)
- ❌ NÃO compatível com Warp MCP
- Uso: Testes manuais e desenvolvimento
MCP Server (mcp-server.js)
- ✅ Servidor MCP real compatível com Warp
- ✅ Implementa protocolo JSON-RPC via stdio
- ✅ Expõe ferramentas (tools) para LLMs
- ❌ Não funciona no navegador
- Uso: Integração com Warp e outros clientes MCP
Instalação
npm install
Uso
Para HTTP Server (desenvolvimento/testes)
npm start
# Acesse: http://localhost:3000
Para MCP Server (Warp)
npm run mcp
Testando HTTP Server
npm test
Configuração do Warp
O arquivo warp-mcp-config.json está configurado para usar o MCP Server real:
{
"mcpServers": {
"mcp-test-server": {
"command": "node",
"args": ["mcp-server.js"],
"working_directory": "C:\\Users\\yvanf\\Documents\\MCP-test"
}
}
}
Ferramentas Disponíveis no MCP
get_users- Listar usuáriosget_user- Obter usuário por IDcreate_user- Criar novo usuárioget_tasks- Listar tarefascreate_task- Criar nova tarefasearch- Buscar usuários e tarefas
License
ISC
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.