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

Bt Reseller

netifymarketplace/bt-reseller-mcp
HTTPregistry active
Summary

Exposes Netify's BT-Authorised Reseller Programme as seven callable tools over streamable HTTP. You can check a UK company's eligibility against BT's five criteria, list resellable products like FTTP and SOGEA with full specs, model commission ranges for a given sales mix, and generate prefilled application URLs. Useful if you're building agent workflows for MSPs, telecom resellers, or IT consultants exploring BT partnership routes. Returns structured JSON with compliance requirements, onboarding timelines, and product catalogs. No auth required, CORS is open. Commission estimates are deliberately qualitative ranges since exact rates are commercial-in-confidence until you sign.

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 →

Netify BT-Authorised Reseller MCP Server

A Model Context Protocol (MCP) server that exposes the Netify BT-Authorised Reseller Programme as a callable surface for AI agents.

UK Limited Companies (MSPs, IT consultants, telecom resellers, EPOS providers, cybersecurity firms) can use this server to:

  • Query programme details (route, fees, onboarding length)
  • Score themselves against the five BT-Authorised Reseller eligibility criteria
  • Model qualitative commission for a given sales mix
  • List BT resellable products with full technical details
  • Read BT compliance requirements (workspace audit, brand rules, Ofcom General Conditions)
  • Construct a prefilled application URL ready for submission

Endpoint

POST https://www.netify.co.uk/resell/bt-business-services/mcp/
Content-Type: application/json

Transport: streamable-http (synchronous JSON-RPC 2.0 over HTTP POST). Auth: none. CORS: open (Access-Control-Allow-Origin: *).

A GET on the same URL returns a server-info banner.

Methods

MethodPurpose
initializeStandard MCP handshake. Returns protocolVersion, capabilities, serverInfo.
tools/listReturns the full list of tools with input schemas.
tools/callInvokes a named tool with arguments.
pingReturns an empty result. Used by clients to verify liveness.
notifications/*Accepted, no body returned.

Tools

ToolPurpose
get_programme_infoProgramme metadata (route, fees=£0, joining target=0, partner details).
list_productsAll seven resellable BT Business products. Optional category filter.
get_productFull details for one product by key (fttp, sogea, cve, badr, btnet, sdwan, sase).
check_eligibilityScores a prospective reseller 0-100 against the five BT dimensions. Returns blockers and next steps.
estimate_commissionQualitative monthly and annual run-rate commission estimate (ranges and formula descriptions, never exact rates).
build_application_urlConstructs a prefilled reseller application URL.
list_compliance_requirementsThe five compliance checks BT actually performs.

Full input schemas are returned by tools/list. Structured data is also available without invoking the MCP server at https://www.netify.co.uk/resell/bt-business-services/data.json.

Quick test

# Tools list
curl -X POST https://www.netify.co.uk/resell/bt-business-services/mcp/ \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'

# Eligibility check
curl -X POST https://www.netify.co.uk/resell/bt-business-services/mcp/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc":"2.0","id":2,"method":"tools/call",
    "params":{
      "name":"check_eligibility",
      "arguments":{
        "is_uk_limited_company":true,
        "has_custom_domain_website":true,
        "has_business_email_on_domain":true,
        "has_dedicated_physical_workspace":true,
        "has_defined_route_to_market":true,
        "business_type":"MSP"
      }
    }
  }'

Use with Claude Desktop, Cursor, VS Code

Add to your MCP client config:

{
  "mcpServers": {
    "netify-bt-reseller": {
      "type": "streamable-http",
      "url": "https://www.netify.co.uk/resell/bt-business-services/mcp/"
    }
  }
}

Discovery

Agents can discover this server from the host page:

<link rel="mcp_endpoint" type="application/json"
      title="Netify MCP Server (JSON-RPC 2.0 over HTTP POST)"
      href="https://www.netify.co.uk/resell/bt-business-services/mcp/">

A static JSON representation of the underlying programme data is also linked:

<link rel="alternate" type="application/json"
      title="Machine-readable programme data"
      href="https://www.netify.co.uk/resell/bt-business-services/data.json">

Commercial transparency

The estimate_commission tool deliberately returns qualitative monthly and annual ranges, not exact rates. Exact commercials (rates, splits, tail length) are confirmed per signed Netify reseller agreement at application stage. This is a deliberate design choice — the rates are commercial-in-confidence between Netify and its resellers.

About Netify

Netify Group Limited is a UK-registered company (Company No. 07087612), BT Authorised Partner since 2012. Operates netify.co.uk — an SD-WAN and SASE marketplace with RFP builder — and recruits Authorised Resellers of BT through the BT-Authorised Reseller Programme.

Registered office: Moor Hall Barn, Workhouse Lane, Melton Constable, Norfolk, NR24 2BE, England.

Contact: support@netify.com — +44 (0)333 202 1011

License

MIT. See LICENSE.

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 →
Registryactive
TransportHTTP
UpdatedMay 20, 2026
View on GitHub