Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Bilka Server

FreeNot checked

A template MCP server for integrating with public APIs, providing a starting point for building custom API integrations.

GitHubEmbed

About

A template MCP server for integrating with public APIs, providing a starting point for building custom API integrations.

README

An MCP server for integrating with public APIs.

Setup

  1. Install uv if you haven't already:

    curl -LsSf https://astral.sh/uv/install.sh | sh
    
  2. Create and activate a virtual environment:

    uv venv
    source .venv/bin/activate  # On Windows: .venv\Scripts\activate
    
  3. Install dependencies:

    uv add "mcp[cli]" httpx
    

Running the Server

To run the server:

python src/server.py

Configuration

The server can be configured by modifying the constants in src/server.py:

  • API_BASE: The base URL for the API you're integrating with
  • USER_AGENT: The user agent string to use for API requests

Adding New Tools

To add new tools to the server:

  1. Create a new async function in src/server.py
  2. Decorate it with @mcp.tool()
  3. Add proper type hints and docstrings
  4. Implement the tool's functionality

Testing with Claude for Desktop

To use this server with Claude for Desktop, add the following to your claude_desktop_config.json:

{
    "mcpServers": {
        "bilka": {
            "command": "python",
            "args": [
                "src/server.py"
            ]
        }
    }
}

from github.com/KristianSchmidt/bilka_mcp

Installing Bilka Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/KristianSchmidt/bilka_mcp

FAQ

Is Bilka Server MCP free?

Yes, Bilka Server MCP is free — one-click install via Unyly at no cost.

Does Bilka Server need an API key?

No, Bilka Server runs without API keys or environment variables.

Is Bilka Server hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Bilka Server in Claude Desktop, Claude Code or Cursor?

Open Bilka Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Bilka Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs