CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Inistate MCP

inistate/inistate-mcp
1authSTDIO, HTTPregistry active
Summary

Connects Claude to the Inistate platform for managing structured workflow data. Exposes seventeen tools covering workspace selection, module discovery, entry queries, and activity submission. You can read module schemas, list entries with filters and pagination, submit create/edit/delete activities, and review entry history. Also includes design tooling: generate scaffolded module templates from descriptions, validate schemas before deployment, and create or update modules programmatically. Ships with an interactive setup wizard that detects your MCP client and writes the config automatically. Supports both stdio and HTTP transports, with PM2 configs included for production deployments. Useful if you're building or maintaining Inistate workflows and want LLM assistance with data operations or schema design.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Inistate MCP Server

MCP server for the Inistate platform — module discovery, entry management, and activity submission.

Setup

Environment Variables

VariableRequiredDefaultDescription
INISTATE_API_TOKENYes—Bearer token for Inistate API authentication
INISTATE_API_BASENohttps://api.inistate.comAPI base URL
INISTATE_MCP_MODENoconfigureInitial mode: runtime, configure, or frontend (see Modes)
INISTATE_MCP_NO_SETUPNo—Set to 1 to force server mode from a terminal (skip the interactive wizard)
INISTATE_DEBUG_FILENo—Set to 1 to log write-path tool calls to ./debug.log, or to a path to log there. Off by default; logs identifiers only, never field values

Install from npm (recommended)

No clone or build needed — npx will fetch and run the published package on demand:

npx -y inistate-mcp

Or install globally:

npm install -g inistate-mcp
inistate-mcp

Interactive setup (recommended)

Run the binary in a terminal with no MCP client attached and it walks you through entering your API token and picks the right config file for your client:

npx -y inistate-mcp
# or, explicitly:
npx -y inistate-mcp setup

Supported clients: Claude Desktop, Claude Code (global or project-local .mcp.json), Cursor, Windsurf, Codex CLI, VS Code (user profile or workspace .vscode/mcp.json), Cline, Gemini CLI (global or workspace). Pick "Print config only" to get a JSON block to paste anywhere else.

The wizard only runs when stdin is a TTY (i.e., you launched it yourself). When an MCP client spawns the binary via piped stdio, it skips the wizard and runs as a normal MCP server — set INISTATE_MCP_NO_SETUP=1 if you need to force server mode from a terminal.

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "inistate": {
      "command": "npx",
      "args": ["-y", "inistate-mcp"],
      "env": {
        "INISTATE_API_TOKEN": "your-token-here"
      }
    }
  }
}

Claude Code Configuration

claude mcp add inistate -e INISTATE_API_TOKEN=your-token-here -- npx -y inistate-mcp

Install from source

git clone https://github.com/Inistate/inistate-mcp.git
cd inistate-mcp
npm install
npm run build

Then point your MCP client at node /absolute/path/to/inistate-mcp/build/index.js.

Tools

Tools marked (configure) are only exposed in configure mode — see Modes. Tools the active backend cannot serve (e.g. scaffold_module on the hosted Platform) stay registered but return a structured capability message instead of failing silently.

ToolDescription
list_workspacesList workspaces the user has access to
set_workspaceSet the active workspace
list_modulesList all discoverable modules in the workspace
get_module_schemaGet the canvas schema (basic or extended tier) — available in every mode
get_module_canvasGet full module definition with stable IDs (round-trippable) (configure)
list_entriesQuery entries with filters, sorting, and pagination
get_entryRead a single entry by ID
get_formGet form fields and defaults for an activity
submit_activityCreate, edit, delete, or run custom activities
submit_activitiesBulk variant — same activity applied to up to 100 entries in one call
get_entry_historyGet entry audit trail and comments
request_upload_urlDefault upload path — get a presigned S3 URL to PUT file bytes to
confirm_uploadConfirm a presigned upload completed; returns the File/Image field path
upload_fileFallback upload via base64/multipart (use only if the presigned flow fails)
download_fileDownload a file (returns pre-signed URL)
design_workflowGenerate a scaffolded module template from a description (configure)
validate_designValidate a module schema before creating or updating (configure)
create_moduleCreate a new module with schema (configure)
update_moduleUpdate an existing module's schema (configure)
scaffold_moduleDraft a module schema from existing data (SQLite, Notion, or Airtable table) (configure) — served by the local runtime (inistate-core); on the hosted Platform backend it returns a capability message pointing to design_workflow
switch_modeSwitch the active mode (runtime / configure / frontend)

Resources

URIDescription
inistate://modulesList all modules
inistate://modules/{name}/canvasBasic module schema (fields + states)
inistate://modules/{name}/canvas/extendedExtended schema with activities and flows
inistate://guardrailsServer-enforced submit_activity rules (read once per session)
inistate://schema/runtimeRuntime schema — entry/activity/file types and filter operators (default)
inistate://schema/configureModule-design schema — write format, field types, colors (configure)
inistate://design-guideFACTS Module Design Guide (configure)
inistate://frontend-guideREST API reference for hand-written UIs (frontend)

Prompts

PromptDescription
design_factsops_workflowGuide an agent through designing a complete workflow module (configure)
execute_activityGuide an agent through executing a specific activity
diagnose_entryGuide an agent through investigating an entry's state and history
modify_moduleGuide an agent through modifying an existing module's schema (configure)

Modes

The server exposes a focused tool/resource surface depending on the active mode, keeping agent context lean. Use switch_mode to change it, or set the initial mode via the INISTATE_MCP_MODE env var (default: configure).

ModeSurface
runtimeEntry and activity operations only — querying, reading, submitting, files, history. The leanest surface for using existing modules.
configureEverything in runtime plus the module-design tools, resources, and prompts (marked (configure) above).
frontendEverything in configure plus the inistate://frontend-guide resource for building hand-written UIs against the REST API.

Tools and resources marked (configure) / (frontend) are absent from the tool list in narrower modes — switch modes to reveal them.

Typical Workflow

  1. list_workspaces → set_workspace — select a workspace (auto-selected when exactly one matches; both return the workspace's module list, so list_modules is only needed to refresh)
  2. get_module_schema — understand a module's fields, states, and activities
  3. get_form — discover required fields before the first submission per (module, activity); reuse its schema for further entries
  4. submit_activity — create or update entries (submit_activities for bulk)
  5. list_entries — query and browse data (use the fields parameter to keep payloads small)
  6. get_entry_history — review entry history

Development

npm run watch          # Watch mode for TypeScript compilation
npm run inspector      # Test with MCP Inspector

MCP Setup

  1. Setup
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher && sudo mv mcp-publisher /usr/local/bin/

or

$arch = if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture -eq "Arm64") { "arm64" } else { "amd64" }; Invoke-WebRequest -Uri "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_windows_$arch.tar.gz" -OutFile "mcp-publisher.tar.gz"; tar xf mcp-publisher.tar.gz mcp-publisher.exe; rm mcp-publisher.tar.gz

  1. Verify
mcp-publisher --help
  1. Authenticate
mcp-publisher login github
  1. Publish: see below

Packaging & Versioning

# Example adding new feature
git checkout -b feat/add-user-tool


# After coding
npx changeset

# Choose:
# 
# minor
# Added new user search tool

# Release
npm run release

# This does:
# install dependencies
# test
# bump version + update changelog + sync server.json
# validate MCP server config
# build (via npm prepare hook)
# publish to npm
# publish to MCP registry

PM2 (Ubuntu/AWS)

Run the HTTP transport in production using PM2:

npm install
npm run build
npm run pm2:start
npx pm2 save

Enable startup on reboot:

sudo npx pm2 startup systemd -u ubuntu --hp /home/ubuntu
npx pm2 save

Common operations:

npm run pm2:restart
npm run pm2:logs
npm run pm2:stop

Set required environment variables (INISTATE_API_TOKEN, and optionally INISTATE_API_BASE, INISTATE_WORKSPACE_ID, OAUTH_ISSUER_URL, INISTATE_APP_URL) in your shell, PM2 ecosystem env, or deployment secret manager before starting.

Testing

Run all tests

npm test

Watch mode (re-runs on file changes)

npm run test:watch

Test structure

Tests are in src/ alongside the source files and use Vitest:

FileTypeWhat it covers
src/schema.test.tsUnit tests (76)designWorkflow, validateDesign (including platform parity and input normalization), helper functions (isValidFieldType, isValidColor, isValidActor, suggestColorForState)
src/activity-guard.test.tsUnit tests (42)submit_activity guard rules — human/hybrid actor, state-change confirmation, confidence-inflation, reference-shape validation
src/tools.schema.test.tsUnit tests (19)Tool input-schema shapes and validation
src/backend-capabilities.test.tsUnit tests (9)Capability gating — tools the active backend cannot serve return a capability message
src/flagged-annotation.test.tsIntegration tests (5)Flagged-response annotation — suppressed transitions are explained (flag_reason + agent_action) so agents stop retrying with higher confidence
src/server.test.tsIntegration tests (17)Spins up the MCP server as a child process and exercises it through the official MCP SDK client — mode-gated tool/resource/prompt discovery, switch_mode, resource reads, prompt retrieval, and local tool calls

Unit tests cover:

  • Field type and color validation against the schema
  • State color suggestion logic
  • Design validation: duplicate names, invalid types/colors/actors, initial state rules, flow integrity, unreachable states, unused activities, AI confidence warnings
  • Input normalization: field-type, state-color, and industry aliases; parsing states from a description
  • Workflow design: pattern detection (approval, ticket, pipeline, record list), industry defaults

Integration tests verify (no API token needed):

  • Mode-gated tool/resource/prompt discovery — runtime mode hides the configure surface, switch_mode reveals and collapses it
  • design_workflow, validate_design work end-to-end through the MCP protocol
  • Static resources (inistate://schema/runtime, inistate://design-guide) return valid content
  • All 4 prompts return correctly templated messages

Interactive testing with MCP Inspector

INISTATE_API_TOKEN=your-token npm run inspector

Opens a browser UI where you can interactively call tools, inspect schemas, and see responses.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

INISTATE_API_TOKEN*secret

Bearer token for Inistate API authentication.

INISTATE_API_BASEdefault: https://api.inistate.com

Inistate API base URL.

Registryactive
Packageinistate-mcp
TransportSTDIO, HTTP
AuthRequired
UpdatedMay 27, 2026
View on GitHub