Uber APK Signer MCP Server

Uber APK Signer MCP Server

An MCP server that enables signing, verifying, and managing APK files and keystores through a chat interface using the Uber APK Signer tool.

Category
Visit Server

README

Uber APK Signer MCP Server

An MCP (Model Context Protocol) server that provides access to the Uber APK Signer tool through your chat LLM. This allows you to sign APK files, verify signatures, manage keystores, and perform other APK signing operations directly from your chat interface.

Features

  • Sign APK Files: Sign APK files using existing keystores
  • Verify Signatures: Verify the signature of APK files
  • Keystore Management: List available keystores and create new ones
  • Flexible Transport: Support for both stdio and TCP transport modes
  • Configurable: Environment-based configuration for easy customization

Prerequisites

  • Node.js 18.0.0 or higher
  • Uber APK Signer tool installed and accessible in your PATH
  • Java Runtime Environment (JRE) for APK signing operations

Installation

  1. Clone this repository:
git clone <your-repo-url>
cd uber-apk-signer-mcp
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration

The server automatically loads configuration from a .env file in your project directory, or you can set environment variables directly.

Environment Variables

You can configure the server using environment variables:

# Uber APK Signer configuration
export UBER_APK_SIGNER_PATH="/path/to/uber-apk-signer"
export UBER_APK_SIGNER_TIMEOUT=300000
export UBER_APK_SIGNER_LOG_LEVEL=info

# MCP Server configuration
export MCP_SERVER_NAME="uber-apk-signer-mcp"
export MCP_TRANSPORT="stdio"  # or "tcp"
export MCP_TCP_HOST="localhost"
export MCP_TCP_PORT=3000

# Security settings
export MCP_ALLOW_INSECURE=false
export MCP_MAX_FILE_SIZE=104857600

Using a .env File (Recommended)

Create a .env file in your project directory for easier configuration:

# Required: Path to your uber-apk-signer tool
UBER_APK_SIGNER_PATH=/path/to/uber-apk-signer

# Optional: Uber APK Signer settings
UBER_APK_SIGNER_TIMEOUT=300000        # 5 minutes timeout
UBER_APK_SIGNER_LOG_LEVEL=info        # debug, info, warn, error

# Optional: Server settings
MCP_SERVER_NAME=uber-apk-signer-mcp    # Server name
MCP_SERVER_VERSION=1.0.0               # Server version
MCP_TRANSPORT=stdio                    # stdio or tcp

# Optional: Security settings
MCP_ALLOW_INSECURE=false               # Allow insecure connections
MCP_MAX_FILE_SIZE=104857600            # Max file size (100MB)

Note: The .env file is automatically ignored by Git to keep your personal paths private.

Uber APK Signer Path

Make sure the Uber APK Signer tool is accessible. You can either:

  • Add it to your system PATH, or
  • Set the UBER_APK_SIGNER_PATH environment variable to the full path

Usage

Starting the Server

Stdio Transport (Default)

npm start

TCP Transport

npm start -- --port 3000 --host localhost

Available Tools

The MCP server provides the following tools:

1. Sign APK (sign_apk)

Sign an APK file using a keystore. Only apkPath is required - other parameters use smart defaults.

Parameters:

  • apkPath (required): Path to the APK file to sign
  • keystorePath (optional): Path to the keystore file (defaults to ~/.android/debug.keystore)
  • keystorePassword (optional): Password for the keystore (defaults to android)
  • keyAlias (optional): Alias of the key to use for signing (defaults to androiddebugkey)
  • keyPassword (optional): Password for the key (defaults to android)
  • outputPath (optional): Output path for the signed APK (auto-generated if not provided)

Examples:

Simple signing (development/testing):

{
  "apkPath": "./app.apk"
}

Production signing with custom keystore:

{
  "apkPath": "./release.apk",
  "keystorePath": "~/keys/release.keystore",
  "keystorePassword": "mysecret",
  "keyAlias": "release-key",
  "keyPassword": "mysecret"
}

Chat usage:

  • "Can you sign my app.apk file?" (uses debug keystore defaults)
  • "Sign my release.apk with my production keystore" (asks for keystore details)

2. Verify APK Signature (verify_apk_signature)

Verify the signature of an APK file.

Parameters:

  • apkPath (required): Path to the APK file to verify

Example:

{
  "apkPath": "/path/to/app.apk"
}

3. List Keystores (list_keystores)

List available keystores in a directory.

Parameters:

  • directory (optional): Directory to search for keystores (default: current directory)

Example:

{
  "directory": "/path/to/keystores"
}

4. Create Keystore (create_keystore)

Create a new keystore for APK signing.

Parameters:

  • keystorePath (required): Path where to create the keystore
  • keystorePassword (required): Password for the keystore
  • keyAlias (required): Alias for the key
  • keyPassword (required): Password for the key
  • commonName (optional): Common name for the certificate
  • organization (optional): Organization name

Example:

{
  "keystorePath": "/path/to/new-keystore.jks",
  "keystorePassword": "newpass123",
  "keyAlias": "release",
  "keyPassword": "newkey123",
  "commonName": "My App",
  "organization": "My Company"
}

Integration with Chat LLMs

MCP Client Configuration

The server supports stdio transport and can be integrated with any MCP-compatible client. Here are configuration examples for popular clients:

Claude Desktop

{
  "mcpServers": {
    "uber-apk-signer": {
      "command": "node",
      "args": ["/path/to/uber-apk-signer-mcp/dist/index.js"],
      "cwd": "/path/to/uber-apk-signer-mcp"
    }
  }
}

Ollama

# In your Ollama configuration
mcp_servers:
  uber-apk-signer:
    command: node
    args: ["/path/to/uber-apk-signer-mcp/dist/index.js"]
    cwd: "/path/to/uber-apk-signer-mcp"

Custom MCP Client

import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js';

const client = new Client({
  name: 'my-client',
  version: '1.0.0',
});

const transport = new StdioClientTransport({
  command: 'node',
  args: ['/path/to/uber-apk-signer-mcp/dist/index.js'],
  cwd: '/path/to/uber-apk-signer-mcp',
});

await client.connect(transport);

Generic Configuration

Most MCP clients use a similar configuration structure:

{
  "mcpServers": {
    "uber-apk-signer": {
      "command": "node",
      "args": ["/path/to/uber-apk-signer-mcp/dist/index.js"],
      "cwd": "/path/to/uber-apk-signer-mcp"
    }
  }
}

Note: Replace /path/to/uber-apk-signer-mcp with the actual path to your installation directory.

Development

Project Structure

src/
├── index.ts              # Main server entry point
├── tools/
│   └── apk-signer-tools.ts  # MCP tool implementations
├── services/
│   └── apk-signer.ts        # APK signing service
└── config/
    └── config.ts             # Configuration management

Building

npm run build

Development Mode

npm run dev

Testing

npm test

Troubleshooting

Common Issues

  1. "Uber APK Signer not found"

    • Ensure the tool is installed and accessible
    • Check the UBER_APK_SIGNER_PATH environment variable
    • Verify the tool works from command line
  2. "Permission denied"

    • Check file permissions for APK and keystore files
    • Ensure the server has read/write access to the working directory
  3. "Keystore password incorrect"

    • Verify the keystore password and key password
    • Check if the keystore file is corrupted
  4. "APK file not found"

    • Verify the APK file path is correct
    • Ensure the file exists and is readable

Debug Mode

Enable debug logging by setting:

export UBER_APK_SIGNER_LOG_LEVEL=debug

Security Considerations

  • Keystore Security: Keep your keystore files and passwords secure
  • File Access: The server needs access to APK and keystore files
  • Network Security: When using TCP transport, consider firewall rules
  • Input Validation: All inputs are validated before processing

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT License - see LICENSE file for details.

Support

For issues and questions:

  1. Check the troubleshooting section
  2. Review the logs with debug mode enabled
  3. Open an issue on GitHub
  4. Contact your internal team for Uber APK Signer specific issues

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured