惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG
博客园 - 叶小钗
Jina AI
Jina AI
Last Week in AI
Last Week in AI
The Cloudflare Blog
博客园 - 【当耐特】
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
博客园_首页
I
InfoQ
G
Google Developers Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
H
Help Net Security
U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
We built an MCP server for employment contracts — remote ...
Timo Hähne · 2026-05-09 · via DEV Community

If you've been building AI agent workflows, you've probably hit this wall: your agent can reason, plan, and execute — but connecting it to external systems still means writing custom API wrappers, auth logic, and error handling for every service.

MCP (Model Context Protocol) solves this through standardization. A service that exposes an MCP server gives any MCP-compatible agent direct tool access — no custom integration needed.

We built staffSign — a digital employment contract API for HR and staffing agencies in the DACH region — with this in mind. The primary interface isn't a UI. It's the MCP server.

The setup (Claude Desktop / Cursor / Claude.ai)

{
  "mcpServers": {
    "staffsign": {
      "url": "https://www.promotionbasis.de/api/mcp",
      "headers": { "X-Api-Key": "<your-api-key>" }
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

Remote HTTP server — nothing to install, no mcp-remote needed.

12 tools across two areas

Contract lifecycle: create_contract, send_contract, get_contract, search_contracts, cancel_contract, delete_contract

Template management: create_contract_template, update_contract_template, get_contract_template, search_contract_templates, activate_contract_template, archive_contract_template

A typical agent workflow

candidate accepts offer in ATS
→ agent: create_contract(templateId, participants, signatureLevel="QES")
→ agent: send_contract(contractId)
→ candidate signs on phone (QES — eIDAS qualified, legally binding in all EU countries)
→ webhook: contract.signed → agent triggers onboarding

Enter fullscreen mode Exit fullscreen mode

Full workflow in under 2 minutes, no human in the loop.

What's notable from an MCP perspective

  • Remote HTTP — direct url + headers config, no stdio wrapper needed
  • QES (eIDAS) — qualified electronic signature, legally binding across all EU countries, included by default
  • Idempotency keys on all POST endpoints — safe for agent retry logic
  • Structured error responses with recovery hints
  • Webhook events for event-driven pipelines

Why we built the MCP server as the primary interface

Most employment contract tools are built around a UI. We made a different bet: within 2-3 years, most integrations will be done by AI agents, not humans writing custom code. So we built the MCP server first, not as an afterthought.

Pay-per-use from €3/contract, no subscription. Docs: staffsign.de/docs

Happy to answer questions about the remote HTTP setup, the QES/eIDAS angle, or the MCP design decisions.