AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Mcp Emtrafesa

mcp-georgegiosue-mcp-emtrafesa · by georgegiosue

A Model Context Protocol (MCP) server for accessing Emtrafesa bus transportation services in Peru

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add mcp-georgegiosue-mcp-emtrafesa

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-georgegiosue-mcp-emtrafesa)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mcp Emtrafesa? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MCP Emtrafesa

> A Model Context Protocol (MCP) server for accessing Emtrafesa bus transportation services in Peru

[](https://github.com/georgegiosue/mcp-emtrafesa/actions/workflows/ci.yml) [](https://codecov.io/gh/georgegiosue/mcp-emtrafesa) [](https://www.npmjs.com/package/mcp-emtrafesa) [](https://www.typescriptlang.org/) [](https://bun.sh) [](https://modelcontextprotocol.io) [](https://opensource.org/licenses/MIT)

  • English: [README.md](README.md) (You are here)
  • Español: [README.es.md](README.es.md)

MCP Emtrafesa is a Model Context Protocol server that provides AI assistants with seamless access to Peru's Emtrafesa bus transportation system. Query terminals, schedules, tickets, and FAQs through standardized MCP tools.


What can you do with this MCP?

  • Find bus terminals across Peru
  • Check schedules between any two cities
  • Look up your purchased tickets using your DNI and email
  • Download your ticket as PDF for printing or sharing
  • Get answers to frequently asked questions

Quick Start

Option 1: Claude Desktop (Recommended)

Open your Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the following entry:

{
  "mcpServers": {
    "mcp-emtrafesa": {
      "command": "npx",
      "args": ["mcp-emtrafesa@latest"]
    }
  }
}

Restart Claude Desktop. You'll see an MCP indicator in the bottom-right corner of the chat input when the server is connected.

Option 2: Clone and run locally

# Clone the repository
git clone https://github.com/georgegiosue/mcp-emtrafesa.git
cd mcp-emtrafesa

# Install dependencies
bun install

Then point your MCP client to the local server:

{
  "mcpServers": {
    "mcp-emtrafesa": {
      "command": "bun",
      "args": ["/absolute/path/to/mcp-emtrafesa/src/index.ts"]
    }
  }
}

> Tip: Use the MCP Inspector for debugging: bunx @modelcontextprotocol/inspector bun src/index.ts


Available Tools

| Tool | Description | Parameters | |------|-------------|------------| | get-terminals | Get all bus terminals in Peru | None | | get-arrival-terminals | Get destination terminals for a given origin | departureTerminalId | | get-departure-schedules | Get schedules between two terminals | departureTerminalId, arrivalTerminalId, date? | | get-latest-purchased-tickets | Search your purchased tickets | DNI, email | | get-ticket-pdf | Download your ticket as a PDF file | ticketCode | | get-frequently-asked-questions | Get FAQs about the service | None |


Usage Examples

Once connected, you can ask Claude naturally:

  • "What bus terminals does Emtrafesa have?"
  • "What schedules are available from Chiclayo to Trujillo on 14/07/2025?"
  • "Look up my tickets with DNI 12345678 and email user@example.com"
  • "Download the PDF for ticket BP01-123456"

Requirements

  • Bun v1.2.10+ or Node.js v18+
  • An MCP-compatible client (Claude Desktop, etc.)

Project Structure

mcp-emtrafesa/
├── src/
│   ├── config/                        # API configuration
│   ├── domain/
│   │   ├── models/                    # Domain model interfaces
│   │   └── ports/                     # Repository interface (contract)
│   ├── infrastructure/
│   │   ├── http/                      # HTTP repository implementation
│   │   └── mcp/
│   │       └── tools/
│   │           ├── index.ts           # Auto-discovers and registers all tools
│   │           ├── tool.ts            # Tool interface + register() helper
│   │           ├── error.ts           # Shared errorResponse()
│   │           ├── faq/
│   │           │   └── get-frequently-asked-questions/
│   │           │       ├── constants.ts
│   │           │       └── get-frequently-asked-questions.ts
│   │           ├── schedule/
│   │           │   └── get-departure-schedules/
│   │           │       ├── constants.ts
│   │           │       ├── schema.ts
│   │           │       ├── types.ts
│   │           │       └── get-departure-schedules.ts
│   │           ├── terminal/
│   │           │   ├── get-terminals/
│   │           │   │   ├── constants.ts
│   │           │   │   └── get-terminals.ts
│   │           │   └── get-arrival-terminals/
│   │           │       ├── constants.ts
│   │           │       ├── schema.ts
│   │           │       ├── types.ts
│   │           │       └── get-arrival-terminals.ts
│   │           └── ticket/
│   │               ├── get-latest-purchased-tickets/
│   │               │   ├── constants.ts
│   │               │   ├── schema.ts
│   │               │   ├── types.ts
│   │               │   └── get-latest-purchased-tickets.ts
│   │               └── get-ticket-pdf/
│   │                   ├── constants.ts
│   │                   ├── schema.ts
│   │                   ├── types.ts
│   │                   └── get-ticket-pdf.ts
│   ├── shared/                        # Shared utilities
│   └── index.ts                       # MCP server entry point
├── package.json
└── tsconfig.json

Development

# Format code
bun run format

# Check formatting
bunx biome check

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/new-feature)
  3. Format your code (bun run format)
  4. Commit your changes
  5. Open a Pull Request

License

MIT License - see [LICENSE](LICENSE) for details.


Acknowledgments


Support

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.