Skip to content

slurpyb/core

v0.1.0MIT

Shared agent defaults for every project: conventions, tools, and always-on MCP.

MCP servers

Declared configuration, as published in mcp.json. The directory shows indexed content; it never connects to or executes these servers.

sequential-thinkingstdio
{
  "type": "stdio",
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-sequential-thinking"
  ]
}
context7stdio
{
  "type": "stdio",
  "command": "npx",
  "args": [
    "-y",
    "@upstash/context7-mcp",
    "--api-key",
    "${CONTEXT7_API_KEY}"
  ]
}
exastreamable-http
{
  "type": "streamable-http",
  "url": "https://mcp.exa.ai/mcp?tools=web_search_exa,get_code_context_exa,crawling_exa,company_research_exa,linkedin_search_exa,deep_researcher_start,deep_researcher_check&exaApiKey=${EXA_API_KEY}"
}
jinastreamable-http
{
  "type": "streamable-http",
  "url": "https://mcp.jina.ai/v1",
  "headers": {
    "Authorization": "Bearer ${JINA_API_KEY}"
  }
}
perplexitystdio
{
  "type": "stdio",
  "command": "npx",
  "args": [
    "-y",
    "@perplexity-ai/mcp-server"
  ],
  "env": {
    "PERPLEXITY_API_KEY": "${PERPLEXITY_API_KEY}"
  }
}
octocodestdio
{
  "type": "stdio",
  "command": "npx",
  "args": [
    "octocode-mcp@latest"
  ]
}
tavilystreamable-http
{
  "type": "streamable-http",
  "url": "https://mcp.tavily.com/mcp/"
}
firecrawlstreamable-http
{
  "type": "streamable-http",
  "url": "https://mcp.firecrawl.dev/v2/mcp",
  "headers": {
    "Authorization": "Bearer ${FIRECRAWL_API_KEY}"
  }
}

What this package declares

The files a client reads when it loads this plugin, exactly as this revision carries them.

{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "core",
  "version": "0.1.0",
  "description": "Shared agent defaults for every project: conventions, tools, and always-on MCP.",
  "author": {
    "name": "Jordan Sweeting",
    "email": "slurpyb@fastmail.com",
    "url": "https://github.com/slurpyb"
  },
  "license": "MIT",
  "keywords": [
    "core",
    "conventions",
    "defaults",
    "mcp",
    "sequential-thinking",
    "context7",
    "exa",
    "jina",
    "perplexity",
    "octocode",
    "tavily",
    "firecrawl"
  ]
}