Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Deed
Deed logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 7:32:03 PM

Deed

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository8 GitHub StarsTotal stargazers on GitHub for the source repository (8 stars).Visit Website

Contract-first language and MCP server for capability-aware code and patch review.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "deed": {
      "url": "https://raw.githubusercontent.com/deed-lang/deed/main/install.sh"
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Deed

A contract-first language where a function signature is a promise the compiler checks. Built for code that machines write and humans review.

Status: the toolchain works; adoption is the open question. The compiler lexes, parses, resolves names, checks types, contracts and effect rows, and runs programs through either the reference interpreter or a WebAssembly backend. deed build writes a core module, and --component writes a component when its exported values cross the canonical ABI. Programs get authority from explicit capabilities, with the same host rules in both engines. The largest unfinished technical work is value reclamation and wider component adapters; the largest project risk is simpler and measured: no public repository outside this organization contains known Deed source yet. ROADMAP.md keeps that distinction and the commands that measure it.

Getting it

One line, on Linux or an Apple-silicon Mac:

Code
$ curl -fsSL https://raw.githubusercontent.com/deed-lang/deed/main/install.sh | sh

On Windows:

Code
> irm https://raw.githubusercontent.com/deed-lang/deed/main/install.ps1 | iex

Either one downloads the release asset for your machine, refuses it if its hash is not the one the release published, and puts a single file in your own profile. It never asks for a password, because it never writes outside it. The checksums come from the same release as the binary, so that catches a corrupted download and does not catch a compromised release; saying so is better than a sha256 that reads like it proves more than it does.

By hand instead: every release carries a deed binary for Linux, macOS and Windows. Take the one for your machine from releases, unpack it, and run it. There is nothing else to install: the compiler, the formatter, the test runner and the language server are all in that one file.

Start with the tutorial if you want one program built up one step at a time.

Code
$ tar xzf deed-v0.2.13-x86_64-unknown-linux-gnu.tar.gz
$ ./deed-v0.2.13-x86_64-unknown-linux-gnu/deed --version
deed 0.2.13

With Rust 1.88 or newer instead, from crates.io or from a clone:

Code
$ cargo install deed-lang
$ cargo install --path crates/deed-cli

deed on crates.io belongs to somebody else, so the package is deed-lang. The binary it installs is deed; the package README keeps the short install and MCP entry points next to the package metadata.

What the version promises. 0.x says the language can still move, so a file that compiles against one minor release may not compile against the next. Breaking moves are called out in release notes, and deed fix carries the mechanical part when possible. The full policy, including diagnostics and std/, is in design/07-versioning.md.

Starting something

deed new writes a project rather than leaving you to work out the module header and the file layout from this repository. The name becomes both the directory and the module path.

Code
$ deed new greeter
greeter/greeter.deed
greeter/main.deed

next: cd greeter && deed test .

$ cd greeter
$ deed test .
./greeter.deed
  ok    a greeting carries the name it was given
  ok    there is no greeting for nobody
  ok    property greeting (100 cases)

3 passed, 0 failed

$ deed run main.deed
hello, world

Three tests from two files, and only two of them were written down. The third is generated from the contract on greeting, which is what a signature being a promise buys. There is no manifest, because a manifest here says where code outside your tree lives and a new project has none.

crates/deed-cli/tests/new.rs runs that command into a temporary directory on every commit and then checks, tests, runs and format-checks what came out, so the scaffold cannot rot into something that no longer compiles.

What it looks like on real code

Code
$ deed run examples/config.deed --dir examples
found it
`..` would leave the directory, and there is no way out of a `Dir`
`../Cargo.toml` is not a single name, and a `Dir` only takes one at a time
`/etc/passwd` is not a single name, and a `Dir` only takes one at a time
`nowhere` is not there
used the fallback
Code
$ deed test examples/
examples/counter.deed
  ok    bumping twice adds twice
  ...
examples/transfer.deed
  ok    moves the money and conserves the total
  ok    refuses to overdraw and leaves the ledger alone
  ok    refuses a currency mismatch and leaves the ledger alone

138 passed, 0 failed

That number used to be 102. Seven of those tests are in std/table now, because the table library stopped living under examples/ and a module that ships with the compiler is context rather than subject, so the corpus does not run its tests any more. Nothing was deleted: the modules that ship carry one hundred and ten tests of their own, and crates/deed-driver/tests/shipped.rs runs every one of them on every commit.

Code
$ deed check examples/transfer.deed --obligations
obligations: 7 proven, 0 tested, 6 guarded
  guarded  examples/transfer.deed:94:5  transfer ensures ok
  ...
  proven   examples/transfer.deed:202:76  Positive

For an editor, see editors. VS Code now carries both syntax highlighting and a language-server client, while Helix and Neovim start the language server from a few lines of configuration and no plugin.

For a coding agent, deed mcp speaks the Model Context Protocol on stdin and stdout, so the machine writing the code can ask the compiler the same questions an editor does rather than scraping them out of terminal output. It holds no capability: a program arrives as text, the answer leaves as text, and a program whose row reaches a file is refused before it runs. Its official Registry name is mcp-name: io.github.deed-lang/deed. how-to/let-an-agent-use-the-compiler.md has the tool reference and the one line worth reading.

Every agent patch comes with a receipt

deed review compares the checked module set before a change with the one after it. The first receipt names newly declared authority and obligations that fell to a weaker contract tier:

Code
$ deed review --before old/src --after src
receipt: review required
authority added (1)
  + billing/transfer/settle: Audit.note
obligation tier regressions (1)
  ! billing/transfer/settle: Positive proven -> guarded
guarded obligations added (0)

The paths may name files or directories, and imports are resolved independently on each side. --format json emits the same receipt as one stable object for an agent or CI job. Findings are informational unless a policy turns them into a gate: --deny-new-authority, --deny-weaker-promises and --deny-new-guarded each exit one when its own evidence is present, while still printing the receipt and a policy verdict. A side that does not check is refused rather than compared.

The same evidence is available to an agent as deed_review. It takes the before and after module sets as arrays of source text, resolves imports within each array, and applies the same three policies without opening a file. The CI guide is a complete pull-request workflow that compares the two commit trees rather than a runner's mutable working directory.

Demo

One clause in a function signature is the difference between two components. demo/README.md shows two functions that are identical except for one uses entry, compiles both to WebAssembly, and shows the import section of each module side by side. The test in crates/deed-driver/tests/demo.rs pins the host's refusal mechanically on every commit.

How-to guides

If you already know the language and want the shortest path to a specific task, start with how-to/README.md. Those pages index the existing corpus: checking a module set, writing tests, contracts and assert refuses, effects and capabilities, formatting, backend compilation, and editor setup.

The shipped library API is indexed separately in docs/std.md, with one page per module and every exported function held there by a documentation ratchet. deed doc <path>... writes the same page for any module of your own. There are no visibility modifiers here, so every declaration is API and a page is the signature, the row, the contract and the lines of its own tests that name it.

There is no REPL. A Deed input is a module of declarations, and deed run enters through main rather than evaluating a top-level expression. For quick experiments, use a scratch .deed file with deed check, deed test or deed run. The right browser answer is a playground that edits and runs a whole program in that same shape.

There is also a small conformance suite for checks that should hold across implementations.

Every .deed file here was written by one person, which is the largest open question about this language and not one the compiler can answer. benchmarks/README.md is where that stops being a sentence: a set of tasks, each with tests it does not show the author, and a scorer that reports not only whether an answer compiles and passes but how much of its contract the checker could prove.

User-visible language, diagnostics, library and tool changes are recorded in CHANGELOG.md, including programs that used to compile and no longer do.

The idea

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • Traecnclaw logoTraecnclaw

    MCP server for TraeCN desktop automation: task delegation, model control, dialogs, code review.

    πŸ’» Developer Tools1 views
    Compare vs Traecnclaw β†’
  • Codealive MCP logoCodealive MCP

    Semantic code search and analysis from CodeAlive for AI assistants and agents.

    πŸ’» Developer Tools0 views
    Compare vs Codealive MCP β†’
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • TokenSave logoTokenSave

    Code intelligence for 15+ languages: semantic graph queries instead of file reads. 37 MCP tools.

    πŸ’» Developer Tools0 views
    Compare vs TokenSave β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Deed

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "deed": { "command": "npx", "args": ["-y", "Deed"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDeed AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/deed?style=directory)](https://allmcps.com/mcp/deed)
HTML Embed
<a href="https://allmcps.com/mcp/deed"><img src="https://allmcps.com/api/badge/deed?style=directory" alt="Deed on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSSE (Remote)
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars8
GitHub Star CountTotal stargazers on GitHub representing community popularity (8 stars).
39Quality signal: Fair Β· 39/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity3/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Deed β†’Install in Claude DesktopInstall in CursorInstall in VS Code