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.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • 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 BuildlistAllMCPs 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 Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Outset
Outset logo
Health: ActiveRecent health check succeeded.Last checked 8/10/2026, 11:00:22 PM

Outset

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 RepositoryVisit Website

AI-moderated research platform: create and launch studies and query interview results.

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
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "outset": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Documentation Overview

Outset MCP

Connect AI agents to Outset β€” the AI-moderated research platform β€” via the Model Context Protocol.

The Outset MCP server is remote: there is nothing to install or run. Point your MCP client at the endpoint below and log in with your Outset account.

Code
https://api.outset.ai/mcp/
  • Transport: Streamable HTTP (stateless JSON-RPC)
  • Auth: OAuth 2.1 with PKCE + Dynamic Client Registration β€” compliant clients connect with zero pre-registration
  • Full developer guide: Outset MCP β€” Integration Guide for Developers (OAuth flow, scopes, DCR details, testing)

Connect from your client

Claude (claude.ai / Desktop)

Settings β†’ Connectors β†’ Add custom connector, name it Outset, paste https://api.outset.ai/mcp/, then Connect to go through the OAuth consent flow. (Custom connectors require a Pro, Max, Team, or Enterprise plan.)

Claude Code

Terminal
claude mcp add --transport http outset https://api.outset.ai/mcp/

Or install as a plugin from this repo:

Terminal
claude plugin marketplace add Outset-AI/outset-mcp
claude plugin install outset@outset-mcp

Cursor

Add to Cursor

Or Settings β†’ MCP β†’ Add Server and paste the URL β€” Cursor handles registration and OAuth automatically.

ChatGPT

Enable Developer Mode under Settings β†’ Apps & Connectors β†’ Advanced settings, then Create a connector with https://api.outset.ai/mcp/ as the MCP server URL and OAuth as the auth method.

VS Code

bash
code --add-mcp '{"name":"outset","type":"http","url":"https://api.outset.ai/mcp/"}'

Gemini CLI

bash
gemini extensions install https://github.com/Outset-AI/outset-mcp

Codex

Add to ~/.codex/config.toml (or .codex/config.toml in your project):

toml
[mcp_servers.outset]
url = "https://api.outset.ai/mcp/"

Then authenticate with:

bash
codex mcp login outset

Anything else

Any MCP client that supports remote servers (Streamable HTTP + OAuth) works. For stdio-only clients, bridge with mcp-remote:

Terminal
npx -y mcp-remote https://api.outset.ai/mcp/

To explore the tool list interactively:

Terminal
npx @modelcontextprotocol/inspector https://api.outset.ai/mcp/

What your agent can do

  • Create and edit studies β€” projects, sections, questions, screeners, display logic, quotas, concepts
  • Configure and launch recruitment β€” sample size, reward, demographic filters (launching may incur fees and is gated behind the separate studies:launch scope)
  • Query results β€” reports, answers, topline insights, category summaries, highlight clips
  • Look up org context β€” workspaces, projects, organization info

The live tools/list response is the source of truth β€” new tools ship regularly. Scopes and org roles are enforced server-side; see the integration guide for the full scope table.

What's in this repo

Manifests for agent directories and marketplaces β€” the server itself is not here (it's remote):

FilePurpose
.claude-plugin/plugin.json + .mcp.jsonClaude Code plugin wrapping the remote server
.claude-plugin/marketplace.jsonMakes this repo installable as a Claude Code plugin marketplace
.cursor-plugin/marketplace.jsonSame, for Cursor's plugin system
gemini-extension.jsonGemini CLI extension (gemini extensions install <repo url>)
server.jsonManifest for the official MCP registry

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • M
    Mcp

    AI-powered user research for everyone

    πŸ’» Developer Tools0 views
    Compare vs Mcp β†’
  • Shadcn Ui Mcp Server logoShadcn Ui Mcp Server

    MCP server that gives AI assistants seamless access to shadcn/ui v4 components, blocks, demos, and metadata.

    πŸ’» Developer Tools2 views
    Compare vs Shadcn Ui Mcp Server β†’

Frequently Asked Questions about Outset

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

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 PreviewOutset AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/outset?style=directory)](https://allmcps.com/mcp/outset)
HTML Embed
<a href="https://allmcps.com/mcp/outset"><img src="https://allmcps.com/api/badge/outset?style=directory" alt="Outset on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
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 stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit1mo ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Jul 2, 2026
37Quality signal: Fair Β· 37/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 & activity2/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 get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it 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 Outset β†’Install in Claude DesktopInstall in CursorInstall in VS Code